annotate runtime/syntax/livebook.vim @ 34674:bfd2c0032686 v9.1.0218

patch 9.1.0218: Unnecessary multiplications in backspace code Commit: https://github.com/vim/vim/commit/8ede7a069419e0e01368c65a2d0c79d6332aa6cd Author: zeertzjq <zeertzjq@outlook.com> Date: Thu Mar 28 10:30:08 2024 +0100 patch 9.1.0218: Unnecessary multiplications in backspace code Problem: Unnecessary multiplications in backspace code, as "col / ts * ts" is the same as "col - col % ts". Solution: Change "col / ts * ts" to "col - col % ts". Adjust the loop and the comments ins_bs() to be easier to understand. Update tests to reset 'smarttab' properly. (zeertzjq) closes: #14308 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 28 Mar 2024 10:45:04 +0100
parents b2e8663e6dcc
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32294
b2e8663e6dcc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Placeholder Livebook syntax file.
b2e8663e6dcc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " This simply uses the markdown syntax.
b2e8663e6dcc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3
b2e8663e6dcc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 if exists("b:current_syntax")
b2e8663e6dcc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 finish
b2e8663e6dcc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 endif
b2e8663e6dcc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7
b2e8663e6dcc Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 runtime! syntax/markdown.vim