runtime: Distribute the editorconfig with vim#12902
Merged
chrisbra merged 1 commit intovim:masterfrom Aug 27, 2023
Merged
Conversation
This is the editorconfig-vim plugin Commit e014708e917b457e8f6c57f357d55dd3826880d4 from https://github.com/editorconfig/editorconfig-vim closes: vim#2286 related: editorconfig/editorconfig-vim#223 Signed-off-by: Christian Brabandt <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #12902 +/- ##
=======================================
Coverage 82.04% 82.04%
=======================================
Files 160 160
Lines 194679 194679
Branches 43696 43696
=======================================
+ Hits 159719 159724 +5
+ Misses 22098 22092 -6
- Partials 12862 12863 +1
Flags with carried forward coverage won't be shown. Click here to find out more. |
|
I don't think it's appropriate for this commit to include a plugin-specific test-suite and a bunch of plugin-specific git detritus. There is no reason why a bundled plugin should have to be identical to the project's upstream git repo, is there? People who want to continually update it can do it in their ~/.vim using the pack infrastructure that was made specifically to make this easier. |
chrisbra
added a commit
that referenced
this pull request
Aug 29, 2023
Remove the test suite and a few other non-used files from the EditorConfig CI project related: #12902 closes: #12941 Signed-off-by: Christian Brabandt <[email protected]>
Member
Author
|
I removed those. Let me know if this is fine. |
|
Looks good, but I'd also remove mkzip.sh. Thanks! |
Konfekt
pushed a commit
to Konfekt/vim
that referenced
this pull request
Aug 30, 2023
This is the editorconfig-vim plugin Commit e014708e917b457e8f6c57f357d55dd3826880d4 from https://github.com/editorconfig/editorconfig-vim closes: vim#2286 related: editorconfig/editorconfig-vim#223 Signed-off-by: Christian Brabandt <[email protected]>
Konfekt
pushed a commit
to Konfekt/vim
that referenced
this pull request
Aug 30, 2023
Remove the test suite and a few other non-used files from the EditorConfig CI project related: vim#12902 closes: vim#12941 Signed-off-by: Christian Brabandt <[email protected]>
ychin
added a commit
to macvim-dev/macvim
that referenced
this pull request
Sep 12, 2023
Updated to Vim 9.0.1897 Special Notes ==================== As some of you may have read, Bram Moolenaar, the creator of Vim, has [passed away](https://groups.google.com/g/vim_announce/c/tWahca9zkt4) recently. He has worked tirelessly on Vim for more than 30 years and this release is dedicated to him. If you would like, you could pay your respects at [this discussion thread](vim/vim#12737). The Vim project has transitioned to new maintainers, and MacVim will continue to be supported as long as Vim is around. Features ==================== More flexible Python integration -------------------- MacVim now allows you to use Python runtime (via `pythonthreedll`, used for Python plugins) of any version at or above 3.9. Previously you had to use the exact same version that was used to build MacVim (Python 3.11). The Python detection logic is also updated to always just find the latest version of Homebrew Python instead of a fixed one, and it will also now locate the default macOS / Xcode Python provided by the Xcode Command Line Tools if that is the only Python available. This should hopefully make configuring Python for MacVim a lot more seamless. See `:h python3-stable-abi`. Vim v9.0.1776 / #1428. New Vim features -------------------- - New built-in support for [EditorConfig](https://editorconfig.org/) via an optional package. Use `packadd editorconfig` to activate it. See vim/vim#12902. - `g<End>` now goes to the first non-blank char. v9.0.1753 - API changes - `undotree()` now takes a bufnr v9.0.1686 - `printf()` now takes positional arguments v9.0.1704 - `virtcol()` now takes winid v9.0.1728 - quickfix items can now have user data v9.0.1688 - Miscellaneous security fixes. Security Fixes ==================== - Fixed insecure usages of interprocess communication in MacVim (CVE-2023-41036) Fixes ==================== - Fixed MacVim to correctly set up the runtime folder in the app bundle. As a corollary, `xxd` is now bundled with MacVim like most other Vim distributions, and MacVim.app now provides man page for the CLI vim commands if the user wants to associate man pages with the `mvim` comamnd (see `:h macvim-PATH`). #1430 - Fixed Vim occasionally crashing and/or hung when autocmd calls `serverlist()` on exit. #1427 Scripting ==================== - Scripting languages versions: - Python now supports 3.9 or above. Compatibility ==================== Requires macOS 10.9 or above. (10.9 - 10.12 requires downloading a separate legacy build) Script interfaces have compatibility with these versions: - Lua 5.4 - Perl 5.30 - Python2 2.7 - Python3 3.9 or above - Ruby 3.2
chrisbra
added a commit
to chrisbra/vim
that referenced
this pull request
Sep 22, 2023
This is the editorconfig-vim plugin Commit e014708e917b457e8f6c57f357d55dd3826880d4 from https://github.com/editorconfig/editorconfig-vim closes: vim#2286 related: editorconfig/editorconfig-vim#223 Signed-off-by: Christian Brabandt <[email protected]>
chrisbra
added a commit
to chrisbra/vim
that referenced
this pull request
Sep 22, 2023
Remove the test suite and a few other non-used files from the EditorConfig CI project related: vim#12902 closes: vim#12941 Signed-off-by: Christian Brabandt <[email protected]>
marktsuchida
added a commit
to marktsuchida/dotfiles
that referenced
this pull request
Sep 26, 2023
Use the version that is now distributed with Vim (vim/vim#12902), since there have not been any releases in a while.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is the editorconfig-vim plugin Commit e014708e917b457e8f6c57f357d55dd3826880d4 from https://github.com/editorconfig/editorconfig-vim
closes: #2286
related: editorconfig/editorconfig-vim#223
Signed-off-by: Christian Brabandt [email protected]