Mercurial > vim
annotate runtime/ftplugin/readline.vim @ 33424:14cf0b014b99 v9.0.1970
patch 9.0.1970: win32: high-dpi support can be improved
Commit: https://github.com/vim/vim/commit/7086b3e76a81cf87592077d54e0ef46a60006c2c
Author: Ken Takata <kentkt@csc.jp>
Date: Mon Oct 2 21:26:03 2023 +0200
patch 9.0.1970: win32: high-dpi support can be improved
Problem: win32: high-dpi support can be improved
Solution: implement WM_GETDPISCALEDSIZE
win32: Better support of Per-Monitor V2 High DPI
Implement WM_GETDPISCALEDSIZE.
It is not so easy to calculate the new size without actually changing
the size. So, this returns an approximate size.
This doesn't work well when a bitmap font (e.g. FixedSys) is selected,
but I think this is acceptable.
closes: #11812
closes: #13252
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Ken Takata <kentkt@csc.jp>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 02 Oct 2023 21:30:05 +0200 |
parents | 0d460c34ee39 |
children | c252fbfde41d |
rev | line source |
---|---|
375 | 1 " Vim filetype plugin file |
31430 | 2 " Language: readline(3) configuration file |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> | |
5 " Last Change: 2022 Dec 09 | |
375 | 6 |
7 if exists("b:did_ftplugin") | |
8 finish | |
9 endif | |
10 let b:did_ftplugin = 1 | |
11 | |
1698 | 12 let s:cpo_save = &cpo |
13 set cpo&vim | |
14 | |
31430 | 15 setlocal comments=:# |
16 setlocal commentstring=#\ %s | |
17 setlocal formatoptions-=t formatoptions+=croql | |
18 | |
389 | 19 let b:undo_ftplugin = "setl com< cms< fo<" |
375 | 20 |
31430 | 21 if exists("loaded_matchit") && !exists("b:match_words") |
22 let b:match_ignorecase = 0 | |
23 let b:match_words = '$if:$else:$endif' | |
24 let b:undo_ftplugin ..= " | unlet! b:match_ignorecase b:match_words" | |
25 endif | |
26 | |
27 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") | |
32974
d46f974fd69e
runtime: Fix typos in various files
Christian Brabandt <cb@256bit.org>
parents:
31430
diff
changeset
|
28 let b:browsefilter = "Readline Initialization Files (inputrc .inputrc)\tinputrc;*.inputrc\n" .. |
31430 | 29 \ "All Files (*.*)\t*.*\n" |
30 let b:undo_ftplugin ..= " | unlet! b:browsefilter" | |
31 endif | |
1698 | 32 |
32976
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
33 if has('unix') && executable('less') |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
34 if !has('gui_running') |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
35 command -buffer -nargs=1 Sman |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
36 \ silent exe '!' . 'LESS= MANPAGER="less --pattern=''^\s+' . <q-args> . '\b'' --hilite-search" man ' . '3 readline' | |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
37 \ redraw! |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
38 elseif has('terminal') |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
39 command -buffer -nargs=1 Sman |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
40 \ silent exe 'term ' . 'env LESS= MANPAGER="less --pattern=''' . escape('^\s+' . <q-args> . '\b', '\') . ''' --hilite-search" man ' . '3 readline' |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
41 endif |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
42 if exists(':Sman') == 2 |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
43 setlocal iskeyword+=- |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
44 setlocal keywordprg=:Sman |
33074
5510af40c77b
runtime: cleanup :Sman command via the undo_ftplugin mechanism (#12967)
Christian Brabandt <cb@256bit.org>
parents:
32984
diff
changeset
|
45 let b:undo_ftplugin .= '| setlocal keywordprg< iskeyword< | sil! delc -buffer Sman' |
32976
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
46 endif |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
47 endif |
d23645a0aca8
runtime: configure keywordpg for some file types (#5566)
Christian Brabandt <cb@256bit.org>
parents:
32974
diff
changeset
|
48 |
1698 | 49 let &cpo = s:cpo_save |
50 unlet s:cpo_save | |
31430 | 51 |
52 " vim: nowrap sw=2 sts=2 ts=8 noet: |