| Commit message (Collapse) | Author | Age |
| ... | |
| |/ / /
| | |
| | |
| | | |
The new content from bf635102 is retained.
|
| | | |
| | |
| | |
| | |
| | |
| | | |
Update various runtime files.
https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7
|
| | | |
| | |
| | |
| | |
| | |
| | | |
Update documentation and syntax files.
https://github.com/vim/vim/commit/12969c04fe7bd27dc0cbf37709eb40a86d4a27f9
|
| | | |
| | |
| | |
| | |
| | |
| | | |
Updated and new runtime files.
https://github.com/vim/vim/commit/f91328100db34996ed7e7a800bed0a30ff0890dd
|
| |\ \ \
| | | |
| | | | |
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
|
| |/ / / |
|
| | | | |
|
| |\ \ \
| | | |
| | | | |
documentation: Update information about default location of undo files
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | | |
vim-patch:86ae720,f913281,dd1616e
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Updated and new runtime files.
https://github.com/vim/vim/commit/f91328100db34996ed7e7a800bed0a30ff0890dd
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Updated runtime files.
https://github.com/vim/vim/commit/86ae720d7567fcbbe40f00cf136c797953f21038
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
vim-patch:7.4.1105
|
| | | | | | |
| | | | | |
| | | | | |
| | | | | | |
Extracted from vim-patch:da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
|
| | | | | | | |
|
| | |_|/ / /
|/| | | |
| | | | |
| | | | | |
[ci skip]
|
| | |/ / /
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Problem: There are still references to MS-DOS support.
Solution: Remove most of the help txt and install instructions. (Ken Takata)
https://github.com/vim/vim/commit/6e722e2f948bc51fcb92d98d6f2a089dac01e2bd
|
| | | | | |
|
| | | | | |
|
| | |/ /
|/| |
| | |
| | |
| | |
| | |
| | | |
Add "Don't give the file editing message" flag in shortmess option.
Add the UI tests by @fmoralesc
Fix the changes for Vim 7.4.1570
|
| | | | |
|
| | |/
|/|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The previous defaults were including the nvim suffix, causing it to
apear twice in the final paths.
kXDGDataHome and kXDGConfigHome are now set as %LOCALAPPDATA%,
kXDGCacheHome is set as $TEMP.
In Windows there is no distinction between configuration and data
storage, but we don't want to place all files under the same path.
get_xdg_home() now appends a different path suffix for kXDGDataHome.
- Configuration files are saved under %LOCALAPPDATA%\nvim
- Data files are saved under %LOCALAPPDATA%\nvim-data
|
| |\ \ |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: User may yank or put using the register being recorded in.
Solution: Add the recording register in the message. (Christian Brabandt,
closes vim/vim#470)
https://github.com/vim/vim/commit/a0ed84a26897c994512873a895b9fc54e90c6845
|
| | | |
| | |
| | |
| | | |
References #3640.
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | |
| | | |
receivers.
Add helper functions dict_clear and dict_set_keys_readonly.
|
| | | |
| | |
| | |
| | |
| | |
| | | |
Reviewed by @watiko
Ported from https://github.com/Silex/vim/commit/de53ab72c89affa8ba77536ed8920751c037d127
|
| |\ \ \
| |_|/
|/| | |
Make it possible to eval() all floating-point values dumped by string()
|
| | | | |
|
| |\ \ \
| | | |
| | | | |
Correct documention on order autocmds
|
| | | | |
| | | |
| | | |
| | | |
| | | | |
The order of executed autocmds TabEnter and WinEnter is wrongly stated
in the documentation. TabEnter is executed after WinEnter.
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Add an extra argument to these functions to set w:quickfix_title.
This is a modified version of a patch from vim_dev. Discussion here:
https://groups.google.com/forum/#!topic/vim_dev/X7VVPd4Do5s
Credits go to Christian "chrisbra" Brabandt and Daniel "blueyed" Hahler.
|
| |/ / / |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Adds support for:
- api:vim_input("<D-a>")
- ":nnoremap <C-D-S-...>" and permutations thereof
UIs must capture the modifier and send it as "<D-...>" to vim_input().
Note: Before this commit, any arbitrary ":nnoremap <{foo}-{bar}>"
mapping could already be invoked with feedkeys("\<{foo}-{bar}>"). This
commit supports "D-" as a modifier that can be combined with "C-", "A-",
"S-" in any order.
For non-GUI (terminal) support, user must:
:set <D-a>={CSI sequence}
then send the {CSI sequence} from their terminal. But this does not work
yet (regression #2204).
Closes #2190
|
| | |/
|/|
| |
| | |
Normally this would end an example, but there's no example block here.
|