| Commit message (Collapse) | Author | Age |
... | |
|\ \ \ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Problem: Can't sort on floating point numbers.
Solution: Add the "f" flag to ":sort". (Alex Jakushev) Also add the "f"
flag to sort().
https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Sorting number strings does not work as expected. (Luc Hermitte)
Solution: Add the 'N" argument to sort()
https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
|
|\ \ \
| | | |
| | | | |
vim-patch:7.4.{941,942,957}
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Problem: There is no way to ignore case only for tag searches.
Solution: Add the 'tagcase' option. (Gary Johnson)
https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
|
|\ \ \ \
| | | | |
| | | | | |
vim-patch:7.4.{1107,1114,1116,1117,1120}
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Problem: delete() does not work well with symbolic links.
Solution: Recognize symbolik links.
https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Problem: Vim can create a directory but not delete it.
Solution: Add an argument to delete() to make it possible to delete a
directory, also recursively.
https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
|
| | | | | |
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
New ex commands: 'tcd', 'tchdir'
Changed Vimscript functions: 'haslocaldir', 'getcwd'
The ex-commands ':tcd' and ':tchdir' are the tab-local equivalents of
':lcd' and ':lchdir'. There are no new Vimscript functions introduced,
instead the functions 'haslocaldir' and 'getcwd' take in optional
arguments. See the documentation for details
Since there is now different levels of local directory a simple boolean
at source level is no longer sufficient; a new enumeration type is used
for the scope-level from now on.
The documentation has been accommodated for these new commands and
functional tests have been written to test the feature.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Set v:windowid as writeable (but read only in the sandbox).
References #3626
|
|\ \ \ \
| | | | |
| | | | | |
vim-patch:60cce2f
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Update runtime files.
https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
|
|/ / / /
| | | |
| | | |
| | | | |
The new content from bf635102 is retained.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Update various runtime files.
https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7
|
|\ \ \ \
| | | | |
| | | | | |
vim-patch:12969c0
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Update documentation and syntax files.
https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
vim-patch:f913281 (runtime/doc/)
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Updated and new runtime files.
https://github.com/vim/vim/commit/f91328100db34996ed7e7a800bed0a30ff0890dd
|
|/ / / / |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Update runtime files.
https://github.com/vim/vim/commit/fc39ecf8ded5466d7e9cbde8db75517718b023d8
Add remaining runtime/filetype.vim changes that were missing in 289588.
|
|\ \ \ \
| | | | |
| | | | | |
vim-patch:88774f
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Updated runtime files and Italian messages.
https://github.com/vim/vim/commit/88774fdd23f08355297bb8cda78856859051d3c7
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Also removes a note regarding the performance of `empty(long_list)` vs
`len(long_list) == 0` because this has nothing to do with the actual state:
first checks that list is not NULL and pointer to its first element is also not
NULL, second gets length by comparing list with NULL and falls back to
`tv->vval.v_list->lv_len` if not. `len(long_list)` *may* still be *slightly*
slower, but the slow down has nothing to do with the length of the list, is
hardly noticeable and depends on how good compiler is at inlining and what
exactly have author of the plugin written (I mean `len(long_list) == 0` vs
`empty(long_list)` vs `!len(long_list)`).
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
To get v:none back just rever this commit. This will not make json*() functions
compatible with Vim though.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|/ / / /
| | | |
| | | | |
Ref #3471
|
|\ \ \ \
| | | | |
| | | | | |
vim-patch:fc39ec
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Update runtime files.
https://github.com/vim/vim/commit/fc39ecf8ded5466d7e9cbde8db75517718b023d8
|
|/ / / / |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
vim-patch:f2571c
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Updated runtime files.
https://github.com/vim/vim/commit/f2571c61d5aa05682ae4d358e625348b61adc861
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
documentation: Update information about default location of undo files
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
spell: fix SpellFileMissing handler
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
In #3027 we deferred the "missing spell file" prompt until VimEnter, but
we were sending the wrong argument (should be "en", not "en_us").
This also caused redundant prompts if user answers "No" to the download
prompt invoked by the SpellFileMissing event.
Closes #3966
Closes #4406
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- Always auto-create spell/ directory, don't ask.
- Don't ask where to put .spl file if only 1 choice exists.
- Always download .sug file, don't ask.
- Use blackhole register for :delete and :g//d.
- Formatting: expand tabs.
|