This commit is contained in:
@ -88,6 +88,8 @@ bind-key s split-window -v -c '#{pane_current_path}'
|
|||||||
|
|
||||||
bind -n M-s set-window-option synchronize-panes\; display-message "synchronize-panes is now #{?pane_synchronized,on,off}"
|
bind -n M-s set-window-option synchronize-panes\; display-message "synchronize-panes is now #{?pane_synchronized,on,off}"
|
||||||
|
|
||||||
|
# bind -n C-Space select-pane -D \; resize-pane -Z
|
||||||
|
|
||||||
bind -n M-z resize-pane -Z
|
bind -n M-z resize-pane -Z
|
||||||
|
|
||||||
bind -n M-j resize-pane -D 5
|
bind -n M-j resize-pane -D 5
|
||||||
|
@ -178,9 +178,6 @@ return {
|
|||||||
"BlazeDebugFinish",
|
"BlazeDebugFinish",
|
||||||
"BlazeDepsUpdate",
|
"BlazeDepsUpdate",
|
||||||
},
|
},
|
||||||
config = function()
|
|
||||||
require("config.blaze")
|
|
||||||
end,
|
|
||||||
keys = function()
|
keys = function()
|
||||||
local function runCommandWithTarget(cmd)
|
local function runCommandWithTarget(cmd)
|
||||||
return function()
|
return function()
|
||||||
|
@ -15,7 +15,7 @@ map <leader>` ysiw`
|
|||||||
vmap <leader>` c`<C-R>"`<ESC>
|
vmap <leader>` c`<C-R>"`<ESC>
|
||||||
|
|
||||||
" --------- SEARCH MAPPINGS ---------
|
" --------- SEARCH MAPPINGS ---------
|
||||||
" unhilight search
|
" unhighlight search
|
||||||
nnoremap <leader><space> :nohlsearch<CR>
|
nnoremap <leader><space> :nohlsearch<CR>
|
||||||
|
|
||||||
" --------- CLIPBOARD MAPPINGS ---------
|
" --------- CLIPBOARD MAPPINGS ---------
|
||||||
@ -46,4 +46,5 @@ nmap <leader>yf :let @+ = expand("%") \| let @" = expand("%")<cr>
|
|||||||
" replace currently selected text with default register
|
" replace currently selected text with default register
|
||||||
" without yanking it
|
" without yanking it
|
||||||
vnoremap <leader>p "_dP
|
vnoremap <leader>p "_dP
|
||||||
nnoremap <leader><leader> :VimuxOpenRunner<cr> :VimuxRunCommand '!!'<cr> :call VimuxSendKeys("Enter")<cr>
|
nnoremap <leader><leader> :VimuxZoomRunner<cr> :VimuxRunCommand '!!'<cr> :call VimuxSendKeys("Enter")<cr>
|
||||||
|
nnoremap <leader>. :VimuxOpenRunner<cr> :VimuxRunCommand '!!'<cr> :call VimuxSendKeys("Enter")<cr>
|
||||||
|
@ -152,3 +152,9 @@ source /google/bin/releases/gmscore-tools/cli/prod/setup_prod_gms.sh
|
|||||||
abbr bq="blaze query"
|
abbr bq="blaze query"
|
||||||
abbr br="blaze run"
|
abbr br="blaze run"
|
||||||
abbr bb="blaze build"
|
abbr bb="blaze build"
|
||||||
|
|
||||||
|
function phenodb() {
|
||||||
|
adb shell sqlite3 /data/data/com.google.android.gms/databases/phenotype.db "'$*'"
|
||||||
|
}
|
||||||
|
|
||||||
|
export PHENOTYPE_PACKAGE_NAME="com.google.YOUR.PHENOTYPE.PACKAGE.NAME"
|
||||||
|
@ -13,7 +13,7 @@ autoload -Uz add-zsh-hook
|
|||||||
add-zsh-hook chpwd g3path::hook
|
add-zsh-hook chpwd g3path::hook
|
||||||
|
|
||||||
g3path::zle::accept-line () {
|
g3path::zle::accept-line () {
|
||||||
if [[ -n $GOOGLE3_ROOT && ! $BUFFER =~ \\s*(bb|bq|br|blaze|g4|p4|g4d|add_dep|buildozer|build_cleaner|debug_android_lint|rabbit|hb|gqui|builddoctor|unused_deps|clipper|blaze_lint_refactoring|migrants_sh.sar) ]]; then
|
if [[ -n $GOOGLE3_ROOT && ! $BUFFER =~ \\s*(bb|bq|br|blaze|g4|p4|g4d|add_dep|buildozer|build_cleaner|debug_android_lint|rabbit|hb|gqui|builddoctor|unused_deps|clipper|blaze_lint_refactoring|migrants_sh.sar|bloaty) ]]; then
|
||||||
BUFFER=${BUFFER// \/\// $GOOGLE3_ROOT\/}
|
BUFFER=${BUFFER// \/\// $GOOGLE3_ROOT\/}
|
||||||
fi
|
fi
|
||||||
zle .accept-line
|
zle .accept-line
|
||||||
|
Reference in New Issue
Block a user