annotate runtime/ftplugin/desktop.vim @ 29633:e80174903fdf v9.0.0157

patch 9.0.0157: 'showbreak' displayed below truncated "after" text prop Commit: https://github.com/vim/vim/commit/cba6952e3499f85545c274873c67bb843d3f3518 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 6 21:03:53 2022 +0100 patch 9.0.0157: 'showbreak' displayed below truncated "after" text prop Problem: 'showbreak' displayed below truncated "after" text prop. Solution: Suppress 'showbreak' when "after" prop doesn't wrap.
author Bram Moolenaar <Bram@vim.org>
date Sat, 06 Aug 2022 22:15:06 +0200
parents 34c1f4cd0c18
children 7c7432a53a6c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
29533
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim filetype plugin file
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: XDG desktop entry
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Maintainer: Eisuke Kawashima ( e.kawaschima+vim AT gmail.com )
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 " Last Change: 2022-07-26
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 if exists('b:did_ftplugin')
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 finish
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 endif
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 let b:did_ftplugin = v:true
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 setl comments=:#
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 setl commentstring=#%s
34c1f4cd0c18 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 let b:undo_ftplugin = 'setl com< cms<'