summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorYen3 <yen3rc@gmail.com>2021-03-01 22:36:05 +0100
committerGitHub <noreply@github.com>2021-03-01 21:36:05 +0000
commit1d76fd55a12e4036d95f8700872178d58e724b35 (patch)
treedac241a5c03b3bc5ba43e1fcd7dd5c886efd89a1 /README.md
parent680ba68d815d772e6461e9ca8306822da64a48aa (diff)
downloadale-1d76fd55a12e4036d95f8700872178d58e724b35.zip
Add borders for floating windows in Neovim (#3603)
* Add borders for floating windows in Neovim * Add docs for floating window border setting Co-authored-by: w0rp <w0rp@users.noreply.github.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/README.md b/README.md
index c008aa87..4d375d16 100644
--- a/README.md
+++ b/README.md
@@ -907,3 +907,20 @@ tools are well-integrated with ALE, and ALE is properly configured to run the
correct commands and map filename paths between different file systems. See
`:help ale-lint-other-machines` for the full documentation on how to configure
ALE to support this.
+
+### 5.xxi. How can I change the borders for floating preview windows?
+
+Borders for floating preview windows are enabled by default. You can use the
+`g:ale_floating_window_border` setting to configure them.
+
+You could disable the border with an empty list.
+
+```vim
+let g:ale_floating_window_border = []
+```
+
+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 = ['│', '─', '╭', '╮', '╯', '╰']
+```