標準の density は 480
なので、5.2 インチLCDではステータスエリア等が大きく感じられる。
adb shell dumpsys display | grep density
で、現在の density の値を確認する。
wm density
コマンドを利用して調整する
細かいのがよければ
# for tig in terminal in Vim | |
set vertical-split = no | |
color date cyan default | |
color graph-commit magenta default |
{ | |
"title": "AquaSKK on iTerm2 / Terminal.app", | |
"rules": [ | |
{ | |
"description": "Change left_ctrl + j to Hiragana on iTerm2", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ |
# A ~/.inputrc for Humans | |
# https://www.topbug.net/blog/2017/07/31/inputrc-for-humans/ | |
$include /etc/inputrc | |
"\C-p":history-search-backward | |
"\C-n":history-search-forward | |
set colored-stats On | |
set completion-ignore-case On |
ProxyCommand connect -H localhost:3128 %h %p | |
Host git.localdomain.org | |
ProxyCommand none | |
Host tunnelhost.com | |
ProxyCommand connect -H localhost:3128 %h %p | |
User user | |
IdentityFile ~/.ssh/ident | |
ServerAliveInterval 60 |
標準の density は 480
なので、5.2 インチLCDではステータスエリア等が大きく感じられる。
adb shell dumpsys display | grep density
で、現在の density の値を確認する。
wm density
コマンドを利用して調整する
細かいのがよければ
diff --git a/src/screen.c b/src/screen.c | |
index 6b4b8279a..4cf6f7824 100644 | |
--- a/src/screen.c | |
+++ b/src/screen.c | |
@@ -4547,7 +4547,11 @@ win_line( | |
/* | |
* Found last space before word: check for line break. | |
*/ | |
- if (wp->w_p_lbr && vim_isbreak(c) && !vim_isbreak(*ptr)) | |
+ if (wp->w_p_lbr |
(注意) : https://github.com/sgur/vim-kaoriya-patches が guilt で適用されている前提
git fetch
guilt pop -a ; git merge --ff-only ; guilt push -a
config.xml text eol=crlf |
if has('clpum') | |
cnoremap <expr> <C-g> <SID>key_descend() | |
cnoremap <expr> <C-w> <SID>key_ascend() | |
function! s:key_descend() abort "{{{ | |
if clpumvisible() | |
call feedkeys("\<Right>", "t") | |
return "" | |
endif | |
return "\<C-g>" | |
endfunction "}}} |