Christian Brabandt
0a87d08dbd
whitespace: Skip '===' conflict marker for markdown
...
fixes : #2014
2021-04-23 08:48:44 +02:00
Christian Brabandt
07ab201a27
Merge pull request #2363 from KSR-Yasuda/feature/ScratchBufName
...
Set bufname for [Scratch] (buftype = nofile)
2021-04-15 10:06:29 +02:00
Christian Brabandt
70b06be4b0
highlighter: do not error out, if defined hi-color does not exist
...
if a color definition is being used, that Vim does not seem to
recognize, instead of erroring out fallback to a hard-coded value of
grey. Otherwise we do have potentially a bad user experience for
throwing too many error messages at the user in very short time, which
may prevent him from doing the actual work (as just happened to me)
Grey should always be defined and it should be rather easy to spot
(I hope). Also just mention for what group this happens.
This should give the user a clue, where and when this happens (so he may
be able to adjust the theme).
2021-04-14 12:36:00 +02:00
Christian Brabandt
ed60e1d369
Merge pull request #2355 from patrick96/coc_current_function
...
coc: Show the current function in section_x
2021-03-27 17:15:19 +01:00
Christian Brabandt
2e421d3cd6
Merge pull request #2356 from nomasprime/move-airlineaftertheme-autocmd-to-load-theme
...
Move AirlineAfterTheme to load_theme()
2021-03-27 17:14:20 +01:00
Christian Brabandt
cba392dd7a
Merge pull request #2357 from miuirussia/patch-1
...
Fix error: key not present in dictionary "percentage"
2021-03-27 17:12:04 +01:00
Christian Brabandt
09dbd09ed3
highlighter: handle color names when converting into msdos codes
...
the highlighter code tries to convert the RGB colors into appropriate
color codes for the MSDOS palette. Unfortunately, it does not consider
color names and tries to split those into a list of 3 RGB codes. This
failes for names shorter 6 characters, causing a list index out of
bounds error.
Fix this by making sure, that the color code should start with '#' and
in case it does not, assume it is a color name and simple return the
name in that case.
closes #2350
2021-03-09 13:53:38 +01:00
Christian Brabandt
a262ec6ce4
Merge pull request #2348 from craigemery/patch-1
...
Fix effecting for affecting.
2021-03-07 18:33:04 +01:00
Christian Brabandt
df956aa08b
Merge pull request #2347 from ls4154/master
...
tagbar: add missing default search method
2021-03-02 12:41:48 +01:00
Christian Brabandt
fc639c0cf8
Merge pull request #2345 from UtkarshVerma/master
...
coc: Show line number for warnings and errors.
2021-03-02 10:20:12 +01:00
Christian Brabandt
cb1bc19064
Merge pull request #2337 from vim-airline/Functionalization_of_branch_extension
...
[refactor] Functionalization of branch extension
2021-02-15 16:12:20 +01:00
Christian Brabandt
c01977d027
Merge pull request #2326 from kdwarn/tagbar-search-method
...
Add searchmethod setting for tagbar extension
2021-02-05 08:19:55 +01:00
Christian Brabandt
82000c7cfc
Merge pull request #2331 from idbrii/fix-nul
...
Fix NUL file created when opening a .po file
2021-02-05 08:19:25 +01:00
Christian Brabandt
6def2f0a82
Merge pull request #2325 from dutchgecko/fix_2324_neovim
...
Ensure correct checking of LSP support on neovim
2021-02-04 08:28:24 +01:00
Christian Brabandt
50dfca52ed
nvimlsp: correctly call the lua functions for nvimlsp
...
closes #2324
Note: seems like one needs to call v:lua.vim.lsp.buf_get_clients() and
even then some older neovims do not understand that. So wrap it around
an exists() call and hope this works for all neovims.
2021-02-02 12:25:16 +01:00
Christian Brabandt
bffa7a4d23
nvimlsp: do not check for :LspInstallInfo
...
nvimlsp removed the :LspInstallInfo command. So instead check explicitly
for neovim for enabling the nvimlsp extension.
In the extension itself check that at least one LSP is attached to the
buffer before returning warning and error messages.
closes #2323
2021-02-02 10:07:51 +01:00
Christian Brabandt
c7a633ce8f
Merge pull request #2319 from idbrii/lsp-hide-when-nothing
...
Return nothing when there is no lsp-progress
2021-01-14 10:17:20 +01:00
Christian Brabandt
0ca9576331
Merge pull request #2313 from DunZzzz/patch-1
...
Support Vue.js file extension in jsformatter
2021-01-10 19:36:20 +01:00
Christian Brabandt
fdfc11f53a
Merge pull request #2318 from jsutlovic/patch-1
...
Modified dark.vim commandline gui colors
2021-01-08 16:13:44 +01:00
Christian Brabandt
30bcbb07c3
Merge pull request #2317 from kidonng/patch-1
...
Update vim-lawrencium link
2021-01-05 10:35:02 +01:00
Christian Brabandt
0eb2ed4488
Merge pull request #2315 from micchy326/impl_vim_lsp_progress
...
impl vim-lsp progress
2021-01-04 08:38:43 +01:00
Christian Brabandt
da6b076ee4
doc: mention that searchcount is only enabled when 'hls' is on
2021-01-02 20:35:58 +01:00
Christian Brabandt
4d284a677c
searchcount: Add leading space
...
closes #2314 #2154
Add a leading space before the searchcount statistics. Note, that this
uses a non-breaking space, because it looks like Vim is stripping aways
leading space characters (see vim/vim#1431 )
2021-01-02 20:25:00 +01:00
Christian Brabandt
8a60582527
init: section_y includes missing endofline and BOM
2021-01-02 19:26:44 +01:00
Christian Brabandt
17bf22e6fb
Merge pull request #2310 from roachsinai/select_tenth_buffer
...
tabline: add command for skip to tenth buffer.
2020-12-30 11:13:51 +01:00
Christian Brabandt
59b4826806
plugin: remember 'scroll' option value and reset it after enabling the statusline
...
fixes #2307
2020-12-23 13:43:30 +01:00
Christian Brabandt
f39208f1a0
Merge pull request #2302 from kazukazuinaina/update_readme_changelog
...
[update] CI's badge and [update] CHANGELOG.md
2020-12-09 08:58:46 +01:00
Christian Brabandt
c074620bfd
Merge pull request #2300 from kazukazuinaina/delete_travis
...
delete travis.yml
2020-12-09 08:42:23 +01:00
Christian Brabandt
6d6afc527e
Merge pull request #2299 from kazukazuinaina/add_gha
...
[add] github-actions
2020-12-09 08:34:52 +01:00
Christian Brabandt
2cea83eb88
whitespace: skip trailing ws test for mail filetypes
2020-12-06 09:46:14 +01:00
Christian Brabandt
9ce6f96f60
highlighter: windows terminal uses $WT_SESSION
2020-12-04 09:43:01 +01:00
Christian
06117a61e1
highlighter: windows terminal is not old win_term
2020-11-27 09:49:17 +01:00
Christian Brabandt
79eac1558a
Merge pull request #2293 from srinivas32/master
...
added power support arch ppc64le on yml file.
2020-11-27 08:32:38 +01:00
Christian Brabandt
157af8ad8b
tabline: use airline#util#strcharpart instead on relying on stpart() with char index
2020-11-26 14:00:29 +01:00
Christian Brabandt
cbf0a8e69a
tabline: use strpart() with chars if possible ( fixes #2297 )
2020-11-26 10:04:43 +01:00
Christian Brabandt
a168ca7a28
tabline: get rid of s:vars in default formatter
2020-11-26 10:04:43 +01:00
Christian Brabandt
a48f67657f
Merge pull request #2295 from nbCloud91/patch-1
...
coc_status should show with autochdir
2020-11-21 20:03:04 +01:00
Christian
91a8ada0f9
doc: document tabline highlighting groups ( closes #2285 )
2020-11-19 14:17:22 +01:00
Christian
beb20cb49f
doc: mention that the tabline mappings are not automatically created
...
related: #2290
2020-11-19 13:52:08 +01:00
Christian Brabandt
536667191d
Merge pull request #2287 from timfeirg/master
...
buf_diagnostics_count is deprecated. Use 'vim.lsp.diagnostic.get_count'
2020-11-14 12:11:18 +01:00
Christian Brabandt
731bdb11d2
Merge pull request #2286 from jan-xyz/patch-1
...
remove work-around for vista.vim
2020-11-10 08:47:56 +01:00
Christian Brabandt
9267cef0f8
Merge pull request #2282 from martskins/handle-lcn-not-running
...
Check LanguageClient-neovim's status before getting diagnostics
2020-11-09 18:35:51 +01:00
Christian Brabandt
bb760710cc
Merge pull request #2283 from Kamilcuk/master
...
Fix typo in checking if gen_tags plugin is loaded
2020-11-09 18:26:12 +01:00
Christian Brabandt
5f2421fa39
Merge pull request #2276 from kazukazuinaina/fix_indent_bookmark_extension
...
[fix] bookmark extension's indentation and add abort
2020-11-06 09:11:35 +01:00
Christian Brabandt
3f4b811510
Merge pull request #2278 from kazukazuinaina/fix_short_path_space
...
[fix] short path formatter's space
2020-11-06 09:10:34 +01:00
Christian Brabandt
d64e5f8dd7
extensions: fix E715
...
Make sure, that the get() function returns the correct variable type
2020-11-05 10:36:03 +01:00
Christian Brabandt
dcebc6d2aa
Merge pull request #2273 from NFrid/master
...
add more customization options for keymap extension
2020-11-05 09:23:58 +01:00
Christian Brabandt
44b7b72938
Merge pull request #2266 from vim-airline/refactor_airline_gui_mode
...
Get rid of g:airline_gui_mode
2020-10-30 09:18:29 +01:00
Christian Brabandt
c8c0e7d9ff
Get rid of g:airline_gui_mode
...
This is needed for Neovim, because an external UI could be attached to
the same neovim server, so it does not make sense to define highlighting
groups with either only the cterm or the guifg attribute set.
So refactor the code slightly got get rid of this variable (and since
this variable is not needed anymore, we can also get rid of the guienter
and OptionSet autocommand).
fixes : #2261
2020-10-30 08:32:35 +01:00
Christian Brabandt
38c9f9ca3d
Merge pull request #2256 from Kamilcuk/master
...
Add gen_tags.vim plugin support
2020-10-29 13:41:35 +01:00
Christian Brabandt
8608270bd3
Merge pull request #2257 from weirane/nroff-wordcount
...
Add nroff to wordcount
2020-10-18 16:48:42 +02:00
Christian Brabandt
85c64a668d
Merge pull request #2259 from subnut/master
...
Improve the documentation of localsearch extension
2020-10-18 16:48:20 +02:00
Christian Brabandt
83bd08a97a
Merge pull request #2243 from whisperity/battery-plugin-no-overwrite
...
[battery.vim] Change indicator to not overwrite position section
2020-10-14 09:04:46 +02:00
Christian Brabandt
14abb40287
Merge pull request #2255 from JNRowe/master
...
Fix doc for enabling wordcount’s reading time support
2020-10-14 09:04:08 +02:00
Christian Brabandt
7087c475be
Merge pull request #2253 from adrian5/master
...
Fix wording/typos in doc
2020-10-12 10:18:53 +02:00
Christian Brabandt
aa773f5cdf
Merge pull request #2248 from MuhammadMouradG/master
...
Fix buffer order in tabline with CtrlSpace plugin
2020-10-06 14:41:34 +02:00
Christian Brabandt
958ffe059a
doc: fix grammatical typo
...
fixes : #2246
2020-10-05 10:50:05 +02:00
Christian Brabandt
9614105d09
Merge pull request #2240 from subnut/master
...
Add more customization for 'localsearch' extension
2020-09-26 08:50:14 +02:00
Christian Brabandt
3740312de0
Merge pull request #2234 from kmoschcau/master
...
Improve the term extension and make it consistent
2020-09-16 11:59:03 +02:00
Christian Brabandt
bf4bba4c5a
Merge pull request #2237 from kazukazuinaina/update_gitignore
...
[update] .gitignore
2020-09-15 14:15:31 +02:00
Christian Brabandt
3272a2d490
doc: mention coc explorer
...
related: #2235
2020-09-15 14:14:21 +02:00
Christian Brabandt
af556115de
Merge pull request #2235 from andys8/patch-1
...
Support coc-explorer (file explorer extension)
2020-09-15 14:10:45 +02:00
Christian Brabandt
47c9205127
Merge pull request #2236 from chrisbra/fix_failing_test
...
fix failing test
2020-09-15 12:27:30 +02:00
Christian Brabandt
aed3523ee3
fix failing test
2020-09-15 12:22:41 +02:00
Christian Brabandt
f5693986c4
Merge pull request #2227 from kazukazuinaina/add_battery_extensions
...
[add] support for battery.vim
2020-09-09 09:03:30 +02:00
Christian Brabandt
51f599e2cf
Merge pull request #2223 from arafel/magit_dictionary
...
vim-magit: Can't use an empty dictionary key
2020-09-03 12:46:56 +02:00
Christian Brabandt
c77d89046e
doc: fix typo for show_buffers variable
...
related: #2218
2020-08-27 13:07:32 +02:00
Christian Brabandt
0f5eedff74
mode: keep hi setting when switching from 'n' to 'ni'
...
when using `Ctrl-O` from insert mode, the highlighting currently updates
from insert mode highlighting to normal mode highlighting.
Unfortunately, changing the highlighting can be a bit expansive, so
redefining the highlighting just for one simple command does not make
too much sense.
Instead, keep the insert mode highlighting, because that's kind of like
the major mode Vim is in currently. The mode message uses '(INSERT)' to
distinguish between a "normal" INSERT mode and this temporary INSERT
mode, so it should still be visually be distinguishable.
closes #2217
2020-08-26 22:46:05 +02:00
Christian Brabandt
3a55368320
searchcount: Ignore errors from searchcount() function
...
If the search regex causes an error, an ugly error message is thrown,
so ignore errors in that case silently.
closes #2216
2020-08-25 13:36:03 +02:00
Christian Brabandt
02c529efe4
Merge pull request #2205 from eevan78/master
...
Several fixes and improvements
2020-08-20 09:33:53 +02:00
Christian Brabandt
6a1c2a74e9
Merge pull request #2125 from shaine/master
...
Use disabled style for inactive tabs
2020-08-12 15:43:05 +02:00
Christian Brabandt
a294f0cb7e
Merge pull request #2183 from tooSadman/nvim-lsp-support
...
Added support for built-in nvim-lsp
2020-08-12 15:41:47 +02:00
Christian Brabandt
8037c373d0
Merge pull request #2195 from kazukazuinaina/add_wordcount_formatter_readingtime
...
[add] wordcount's reading time formatter
2020-08-12 15:40:26 +02:00
Christian Brabandt
21e47ca5b3
Disable whitespace checking for csv files
...
In addition, add a time limit of 500 ms for detecting the indent
fixes : #2200
2020-08-12 15:38:26 +02:00
Christian Brabandt
ffa44b8327
Merge pull request #2188 from kazukazuinaina/fix_searchcount_extension
...
[fixup] Release the search restriction and remove unnecessary functions
2020-08-03 15:20:49 +02:00
Christian Brabandt
e4077b1725
Merge pull request #2185 from dcousens/patch-1
...
Fix spelling typo in comment
2020-08-03 14:44:58 +02:00
Christian Brabandt
a836e09e91
Merge pull request #2187 from kazukazuinaina/add_section_c_short_path
...
[add] short_path formatter in section_c
2020-08-03 12:21:44 +02:00
Christian Brabandt
7fc51f6952
Merge pull request #2181 from cdelledonne/master
...
Add support for cdelledonne/vim-cmake
2020-07-17 19:36:00 +02:00
Christian Brabandt
b6d6485a90
Merge pull request #2176 from konafx/master
...
Add fern.vim support
2020-07-14 16:10:21 +02:00
Christian Brabandt
f655add4e9
hunks: do not add trailing whitespace when branch extension is disabled
...
fixes #2177
2020-07-14 14:03:17 +02:00
Christian Brabandt
767107070e
Merge pull request #2175 from skeept/patch-1
...
don't rely on NR for checking that NrrRgn is loaded
2020-07-14 11:36:33 +02:00
Christian Brabandt
768bd0f5c6
Merge pull request #2158 from larrybradley/fix-venv
...
Fix handling of virtualenv and poetv plugins
2020-07-09 08:42:32 +02:00
Christian Brabandt
08bab60614
Merge pull request #2174 from nomasprime/dynamically_resize_section_z
...
Dynamically resize section Z
2020-07-09 08:41:45 +02:00
Christian Brabandt
0a0d61af6c
fzf: do not check for loaded fzf
...
closes #2163
2020-07-08 08:47:59 +02:00
Christian Brabandt
48d49075ec
Merge pull request #2171 from nickspoons/omnisharp-extension
...
Add OmniSharp extension to display server status
2020-07-08 08:39:02 +02:00
Christian Brabandt
b843321428
Merge pull request #2166 from fvictorio/patch-1
...
Fix link to localsearch repo
2020-07-05 11:26:07 +02:00
Christian Brabandt
ba9b3e1839
Merge pull request #2161 from kazukazuinaina/add_support_searchcount
...
[RFC] Add support for searchcount extension
2020-06-29 09:25:56 +02:00
Christian Brabandt
cb03578a7c
Merge pull request #2164 from Freed-Wu/master
...
Fix bug of keyboard_layout
2020-06-29 09:24:48 +02:00
Christian Brabandt
8be6a2ecd5
Merge pull request #2156 from kazukazuinaina/add_fzf_extension_doc
...
[add] fzf integration's document
2020-06-22 08:41:50 +02:00
Christian Brabandt
bc8fdfe946
terminal: correctly shorten terminal tabline
...
If there is a single terminal window in the current tabpage, the whole
long command will be displayed in the tabline, even when it should be
shortened by default.
By default the title will not be shown if there are several windows in
the current tabpage, but if there is only one single terminal window, it
will still be shown (and might be a bit long). But I guess, it is better
to just show a possible too long terminal window name, than not show
anything).
fixes #2126
2020-06-21 22:31:43 +02:00
Christian Brabandt
5ce3e63658
Merge pull request #2146 from noisysocks/master
...
Support fzf and fzf.vim
2020-06-19 11:45:34 +02:00
Christian Brabandt
e58c4a493c
Merge pull request #2155 from kazukazuinaina/update_license_year
...
[update] wordcount's formatter's license year
2020-06-19 09:49:35 +02:00
Christian Brabandt
90f7210413
Merge pull request #2149 from nomasprime/add_update_highlights_docs
...
Add update highlights docs
2020-06-09 18:37:14 +02:00
Christian Brabandt
0de31196b6
Merge pull request #2139 from PratikBhusal/master
...
Add vim-dirvish support
2020-05-29 23:12:46 +02:00
Christian Brabandt
6ddda74126
Merge pull request #2141 from kazukazuinaina/add_extension_unite_denite
...
[add] unite and denite's config
2020-05-29 23:11:50 +02:00
Christian Brabandt
64c0374423
Merge pull request #2138 from kazukazuinaina/update_CONTRIBUTING.md
...
[update] CONTRIBUTING.md
2020-05-29 23:11:07 +02:00
Christian Brabandt
c744fb81b6
Merge pull request #2140 from xerus2000/patch-1
...
Update README.md
2020-05-27 11:50:16 +02:00
Christian Brabandt
aa46603214
Merge pull request #2128 from jolan78/master
...
fix for #2127
2020-05-04 14:19:44 +02:00
Christian Brabandt
ffdf52e38d
Merge pull request #2129 from kazukazuinaina/fix_check_ycm_extension
...
abopt get() function
2020-05-04 14:19:14 +02:00
Christian Brabandt
915c7cfcd7
Fix brocken CI test
...
because vim 7.4 does not know v:vim_did_enter
I am beginning to wonder, whether we should have vim8 as a minimal
requirement...
2020-05-04 08:10:33 +02:00