summaryrefslogtreecommitdiff
path: root/test/command_callback
diff options
context:
space:
mode:
authorKevin Clark <kevin.clark@gmail.com>2021-01-14 10:06:20 -0800
committerGitHub <noreply@github.com>2021-01-14 18:06:20 +0000
commit39f393ef077998028bce697659c3aac37f7aa090 (patch)
tree04cb38730a48ce590d20b584e96f65746a738845 /test/command_callback
parent97ce2423b04745d5c7588385ddbd75be9ef846d4 (diff)
downloadale-39f393ef077998028bce697659c3aac37f7aa090.zip
Add nvim floating window support (replaces #3314) (#3470)
* Add nvim floating window hover support * Add configuration for float to replace preview * preview#ShowFloating: qualify local variables * Configure floating preview usecases individually Also: * Extract floating preview to its own file. * Ignore 'stay_here' option. Moving into the floating preview window seems confusing at best. * Re-use existing floating preview window if it's still up. * Flush out floating preview documentation. * Watch cursor position changes per window Floating previews open a new window, so when that window is written to, it moves briefly there at a different position than the original window. This makes repeated positions detected when positions are tracked at a s: level. Instead, we change the variable to window scoped, which only fires a message if the cursor has changed from the last position in *that window*. * g:ale_floating_preview cleanup * floating_preview: add ALEDetail tests * Fix fecs test missing runtime call * Add ALEHover floating preview tests Co-authored-by: Jan-Grimo Sobez <jan-grimo.sobez@phys.chem.ethz.ch>
Diffstat (limited to 'test/command_callback')
-rw-r--r--test/command_callback/test_fecs_command_callback.vader1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/command_callback/test_fecs_command_callback.vader b/test/command_callback/test_fecs_command_callback.vader
index f70ad084..4287d324 100644
--- a/test/command_callback/test_fecs_command_callback.vader
+++ b/test/command_callback/test_fecs_command_callback.vader
@@ -1,5 +1,6 @@
Before:
call ale#assert#SetUpLinterTest('javascript', 'fecs')
+ runtime autoload/ale/handlers/fecs.vim
After:
call ale#assert#TearDownLinterTest()