| Commit message (Collapse) | Author | Age |
|\
| |
| | |
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.
|
|\ \ \
| |/ /
|/| | |
vim-patch:86ae720,f913281,dd1616e
|
| | |
| | |
| | |
| | |
| | |
| | | |
Correct optwin script, update PHP complete.
https://github.com/vim/vim/commit/dd1616e6cedf798a5e6db3bf8cec1fc79a0481d0
|
| | |
| | |
| | |
| | |
| | |
| | | |
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]
|
|\ \ \
| | | |
| | | | |
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.
|
| | | |
|