| Commit message (Collapse) | Author | Age |
| |\
| |
| | |
Fix condition for lazy loading remote plugins defintions
|
| | | |
|
| |/
|
|
|
|
|
| |
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
|
| | |
|
| |\
| |
| | |
man.vim: parse page names containing dash or dot
|
| | | |
|
| | |
| |
| |
| |
| | |
- Explicitly specify case sensitivity when comparing strings
- Clean up unnecessarily complex `if` statements
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Define a collection of legal characters when parsing page and section
in `s:parse_page_and_section()` instead of relying on 'iskeyword',
which is unreliable.
- Allow non-numeric section names (e.g., `3c`).
- Simplify argument handling in `man#get_page()` to accommodate
non-numeric section names.
Fixes #4165.
|
| | | |
|
| |\ \
| | |
| | | |
Ruby remote plugin support
|
| | | | |
|
| | | | |
|
| |/ / |
|
| |/ |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| | |
| |
| |
| |
| |
| |
| | |
Problem: Vim doesn't recognize all htmldjango files.
Solution: Recognize a comment. (Daniel Hahler, PR #410)
https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
|
| | | |
|
| |\ \
| | |
| | | |
vim-patch:7.4.792
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Can only conceal text by defining syntax items.
Solution: Use matchadd() to define concealing. (Christian Brabandt)
https://github.com/vim/vim/commit/6561d52ecbe6e24d1b90403078cc8b76c53c42fc
|
| |\ \ \
| | | |
| | | | |
Improve remote plugin scripts
|
| | |/ / |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
- `syntax_on` is documented. Rather than introduce a new undocumented
VimL global `g:syntax_off`, use a module-local flag.
- Rename "maybe" functions to follow style guidelines (use standard
module prefix)
|
| | | |
| | |
| | |
| | |
| | | |
If user invokes :filetype or :syntax before startup defaults are
applied, don't clobber their choices.
|
| | | |
| | |
| | |
| | | |
It is no longer forcing anything.
|
| |/ / |
|
| |\ \
| | |
| | | |
doc: remove references to 'term' and other tty related options.
|
| | | |
| | |
| | |
| | | |
Re: https://github.com/neovim/neovim/issues/4218
|
| |/ / |
|
| |\ \
| | |
| | | |
vim-patch:7.4.742
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Cannot specify a vertical split when loading a buffer for a
quickfix command.
Solution: Add the "vsplit" value to 'switchbuf'. (Brook Hong)
https://github.com/vim/vim/commit/a594d77ffcccf2ac0e4079c41342ca55d4c9bb08
|
| | | |
| | |
| | |
| | |
| | |
| | | |
Update help files.
https://github.com/vim/vim/commit/979243b
|