aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_normal.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-08-21 08:20:40 +0200
committerGitHub <noreply@github.com>2018-08-21 08:20:40 +0200
commit150b1b7b40957b1b4d89e0182e685d39e33ef227 (patch)
treef8cba151375793aeadc538dce96df130726a9d3e /src/nvim/testdir/test_normal.vim
parent0839c442574cc6f272bee53d350c0d155b74894a (diff)
parentc03fc7ef3e74290b9aafa288b6ead9fefa26f09f (diff)
downloadrneovim-150b1b7b40957b1b4d89e0182e685d39e33ef227.tar.gz
rneovim-150b1b7b40957b1b4d89e0182e685d39e33ef227.tar.bz2
rneovim-150b1b7b40957b1b4d89e0182e685d39e33ef227.zip
Merge #8861 from janlazo/vim-8.0.1364
Diffstat (limited to 'src/nvim/testdir/test_normal.vim')
-rw-r--r--src/nvim/testdir/test_normal.vim5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_normal.vim b/src/nvim/testdir/test_normal.vim
index caa530e4aa..3ff1e98caf 100644
--- a/src/nvim/testdir/test_normal.vim
+++ b/src/nvim/testdir/test_normal.vim
@@ -2201,10 +2201,11 @@ func! Test_normal44_textobjects2()
endfunc
func! Test_normal45_drop()
- if !has("dnd")
+ if !has('dnd')
return
endif
- " basic test for :drop command
+
+ " basic test for drag-n-drop
" unfortunately, without a gui, we can't really test much here,
" so simply test that ~p fails (which uses the drop register)
new