| Commit message (Collapse) | Author | Age |
... | |
|
|
|
|
|
| |
Update various runtime files.
https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
spell: fix SpellFileMissing handler
|
| |
| |
| |
| |
| |
| |
| |
| | |
- 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.
|
|\ \
| |/
|/| |
vim-patch:86ae720,f913281,dd1616e
|
| |
| |
| |
| |
| |
| | |
Correct optwin script, update PHP complete.
https://github.com/vim/vim/commit/dd1616e6cedf798a5e6db3bf8cec1fc79a0481d0
|
| |
| |
| |
| |
| |
| | |
Updated runtime files.
https://github.com/vim/vim/commit/86ae720d7567fcbbe40f00cf136c797953f21038
|
|/ |
|
| |
|
|\
| |
| | |
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
|
| | | |
|
| | | |
|
|/ / |
|
|/ |
|
|\
| |
| | |
Make it possible to eval() all floating-point values dumped by string()
|
| | |
|
| | |
|
|/ |
|
|
|
|
| |
If $MANWIDTH is set do not override it otherwise use winwidth.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
More updated runtime files.
https://github.com/vim/vim/commit/83d1b19015219c7799af0a0d539ae86a41057240
Left out:
- doc/tags
- doc/todo.txt
- runtime/tutor/de.*
- runtime/syntax/vim.vim that seems to have already been
applied/autogenerated without the has(...) tests
|
|
|
|
| |
Fixes issue #4071
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
`RedirectStream` is used to redirect `stdout` and `stderr`, but are
missing certain I/O methods available on other file-like objects.
This causes external plugins (like `colorama`) to crash.
Inheriting from `io.IOBase` adds an abstract implementation of these
methods, which will at least keep the python code running.
Fixes #4045
|
|
|
|
|
|
| |
Update a few runtime files.
https://github.com/vim/vim/commit/f3c2afb77f8b1f2591337fcaa90ba0fb45365cbc
|
| |
|
| |
|
|
|
| |
Closes #3754
|
|\
| |
| | |
tutor: Update vim-tutor to 0.2.1
|
| |
| |
| |
| | |
Also, some tweaks based on input by @fdinoff on gitter.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Note: it looks like viminfo files do not store search direction intentionally.
After reading viminfo file search direction was considered to be “forward”.
Note 2: all files created on earlier Neovim version will automatically receive
“forward” direction.
Fixes #3580
|
|\ \
| |/
|/| |
Add plugin for editing ShaDa files
|
| |
| |
| |
| | |
Contains most of the logic
|
| | |
|
|/
|
|
| |
Do not use `finish` inside of `provider#python{,3}#Call`, but `return`.
|
|
|
|
| |
Closes #3535
|
|
|
|
|
|
| |
Update runtime files.
https://github.com/vim/vim/commit/8feef4ff6253afb9dcc61c40082ed4fbb96b685c
|
| |
|
| |
|
|
|
|
|
| |
Set window-local options only on a newly-created "man" tab or if we're
already in one.
|
|
|
|
|
| |
- Eliminate man#pre_get_page().
- Temporarily remove () from 'iskeyword' to avoid spurious \k match.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- do not create leader maps
- :norm! instead of :norm
- :keepjumps during layout
- use blackhole reg to avoid polluting unnamed reg
- format buffer name as "man://foo(2)"
- simulate behavior of `man`
- buffer-local mapping of q to quit
- open in new tab instead of new window
- set 'nolist'
- set tabstop=8
|