We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
P
http://lingr.com/room/vim/archives/2013/12/20#message-17873040
あと、P で貼り付けた後に u で undo するとその場ではハイライトが残っちゃいます。その後動かせば消えるので大きな問題はないですが
http://lingr.com/room/vim/archives/2013/12/20#message-17873709
行選択 yank して、カーソルを一番左のカラムにして Pu してみてください 矩形選択でもできるはず
undo時にカーソルが動かないのでautocmd CursorMovedじゃあ検知できない。 autocmd TextChanged使えばいけるかなと思ったけど、 無理でした。
autocmd CursorMoved
autocmd TextChanged
b:changedtick
changedtick
ということで、検知として役に立てられなかった。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
http://lingr.com/room/vim/archives/2013/12/20#message-17873040
http://lingr.com/room/vim/archives/2013/12/20#message-17873709
undo時にカーソルが動かないので
autocmd CursorMoved
じゃあ検知できない。autocmd TextChanged
使えばいけるかなと思ったけど、無理でした。
b:changedtick
と、保存したchangedtick
の値を比較するとなぜか常に等しい。ということで、検知として役に立てられなかった。
The text was updated successfully, but these errors were encountered: