summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly+github@gmail.com>2022-05-26 23:41:06 -0500
committerGitHub <noreply@github.com>2022-05-27 13:41:06 +0900
commitae44f0560031d4e7c1c806247efb8797cb54dc0e (patch)
treeec276ca669e782be680721234d55a1ab57d4f1ac /README.md
parent3d7b3a654160c41c628097e1aaf8f2af8fb15756 (diff)
downloadale-ae44f0560031d4e7c1c806247efb8797cb54dc0e.zip
Allow customization of all floating window borders (#4215)
* Allow customization of all floating window borders Users may not necessarily want the same border character for top+bottom or left+right, so allow all eight border characters to be configured in g:ale_floating_window_border. For backwards compatibility, the old rules are still applied if only six elements are given. * Reorder popup border array for compatibility
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 793148d7..d092d8a6 100644
--- a/README.md
+++ b/README.md
@@ -931,14 +931,14 @@ If the terminal supports Unicode, you might try setting the value like below, to
make it look nicer.
```vim
-let g:ale_floating_window_border = ['│', '─', '╭', '╮', '╯', '╰']
+let g:ale_floating_window_border = ['│', '─', '╭', '╮', '╯', '╰', '│', '─']
```
Since vim's default uses nice unicode characters when possible, you can trick
ale into using that default with
```vim
-let g:ale_floating_window_border = repeat([''], 6)
+let g:ale_floating_window_border = repeat([''], 8)
```
<a name="faq-vim-lsp"></a>