Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
tmux /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
bash_completion_tmux.sh
1.97
KB
-rw-r--r--
2015-04-25 22:44
h-boetes.conf
913
B
-rw-r--r--
2015-04-25 22:44
n-marriott.conf
2.28
KB
-rw-r--r--
2015-04-25 22:44
screen-keys.conf
1.76
KB
-rw-r--r--
2015-04-25 22:44
t-williams.conf
2.72
KB
-rw-r--r--
2015-04-25 22:44
tmux.vim.gz
1.97
KB
-rw-r--r--
2015-09-27 11:42
vim-keys.conf
1.06
KB
-rw-r--r--
2015-04-25 22:44
xterm-keys.vim
1.26
KB
-rw-r--r--
2015-04-25 22:44
Save
Rename
# $Id: vim-keys.conf,v 1.2 2010-09-18 09:36:15 nicm Exp $ # # vim-keys.conf, v1.2 2010/09/12 # # By Daniel Thau. Public domain. # # This configuration file binds many vi- and vim-like bindings to the # appropriate tmux key bindings. Note that for many key bindings there is no # tmux analogue. This is intended for tmux 1.3, which handles pane selection # differently from the previous versions # split windows like vim # vim's definition of a horizontal/vertical split is reversed from tmux's bind s split-window -v bind v split-window -h # move around panes with hjkl, as one would in vim after pressing ctrl-w bind h select-pane -L bind j select-pane -D bind k select-pane -U bind l select-pane -R # resize panes like vim # feel free to change the "1" to however many lines you want to resize by, only # one at a time can be slow bind < resize-pane -L 1 bind > resize-pane -R 1 bind - resize-pane -D 1 bind + resize-pane -U 1 # bind : to command-prompt like vim # this is the default in tmux already bind : command-prompt # vi-style controls for copy mode setw -g mode-keys vi