Update
This commit is contained in:
parent
1ce53c9a68
commit
6c9963ea36
163 changed files with 863 additions and 1630 deletions
5
Xmodmap
Normal file
5
Xmodmap
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
keycode 66 = Control_L
|
||||||
|
clear Lock
|
||||||
|
add Control = Control_L
|
||||||
|
keycode 118 = Caps_Lock
|
||||||
|
add Lock = Caps_Lock
|
57
Xresources
Normal file
57
Xresources
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
! terminal colors -------------------------------------------------------------
|
||||||
|
*background: #282828
|
||||||
|
*foreground: #ebdbb2
|
||||||
|
*color0: #282828
|
||||||
|
*color8: #928374
|
||||||
|
*color1: #cc241d
|
||||||
|
*color9: #fb4934
|
||||||
|
*color2: #98971a
|
||||||
|
*color10: #b8bb26
|
||||||
|
*color3: #d79921
|
||||||
|
*color11: #fabd2f
|
||||||
|
*color4: #458588
|
||||||
|
*color12: #83a598
|
||||||
|
*color5: #b16286
|
||||||
|
*color13: #d3869b
|
||||||
|
*color6: #689d6a
|
||||||
|
*color14: #8ec07c
|
||||||
|
*color7: #a89984
|
||||||
|
*color15: #ebdbb2
|
||||||
|
|
||||||
|
! Xcursor ---------------------------------------------------------------------
|
||||||
|
Xcursor.theme: Vanilla-DMZ-AA
|
||||||
|
Xcursor.size: 22
|
||||||
|
|
||||||
|
! Xft setttings ---------------------------------------------------------------
|
||||||
|
Xft.dpi: 96
|
||||||
|
Xft.antialias: true
|
||||||
|
Xft.rgba: rgb
|
||||||
|
Xft.hinting: true
|
||||||
|
Xft.hintstyle: hintslight
|
||||||
|
|
||||||
|
! xterm ----------------------------------------------------------------------
|
||||||
|
xterm*termName: xterm-256color
|
||||||
|
xterm*locale: true
|
||||||
|
xterm*metaSendsEscape: true
|
||||||
|
xterm*faceName: Hermit:style=Medium:size=11
|
||||||
|
xterm*dymanicColors: true
|
||||||
|
xtem*utf8: 2
|
||||||
|
xterm*eightBitInput: true
|
||||||
|
xterm*saveLines: 4096
|
||||||
|
xterm*scrollKey: true
|
||||||
|
xterm*scrollTtyOutput: false
|
||||||
|
xterm*scrollBar: true
|
||||||
|
xterm*rightScrollBar: true
|
||||||
|
xterm*jumpScroll: true
|
||||||
|
xterm*multiScroll: true
|
||||||
|
xterm*fastScroll: true
|
||||||
|
xterm*toolBar: false
|
||||||
|
xterm*VT100.translations: #override <Btn1Up>: select-end(PRIMARY, CLIPBOARD, CUT_BUFFER0)
|
||||||
|
|
||||||
|
! xpdf ------------------------------------------------------------------------
|
||||||
|
xpdf*enableFreetype: yes
|
||||||
|
xpdf*antialias: yes
|
||||||
|
xpdf*foreground: black:
|
||||||
|
xpdf*background: white
|
||||||
|
xpdf*urlCommand: /usr/bin/iceweasel %s
|
||||||
|
|
92
bashrc
Normal file
92
bashrc
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
#
|
||||||
|
# ~/.bashrc
|
||||||
|
# v2
|
||||||
|
#
|
||||||
|
# Marcel Michael Kapfer
|
||||||
|
# 12 July 2015
|
||||||
|
# MIT License
|
||||||
|
#
|
||||||
|
|
||||||
|
# If not running interactively, don't do anything
|
||||||
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
|
## Added Aliases from wiki.archlinux.org ##
|
||||||
|
|
||||||
|
## Modified commands ## {{{
|
||||||
|
alias diff='colordiff' # requires colordiff package
|
||||||
|
alias grep='grep --color=auto'
|
||||||
|
alias more='less'
|
||||||
|
alias df='df -h'
|
||||||
|
alias du='du -c -h'
|
||||||
|
alias mkdir='mkdir -p -v'
|
||||||
|
alias nano='nano -w'
|
||||||
|
alias ping='ping -c 3'
|
||||||
|
alias pingtest='ping -c 3 marcel-kapfer.de'
|
||||||
|
alias dmesg='dmesg -HL'
|
||||||
|
alias da='date "+%A, %B %d, %Y [%T]"'
|
||||||
|
alias du1='du --max-depth=1'
|
||||||
|
alias hist='history | grep' # requires an argument
|
||||||
|
alias openports='ss --all --numeric --processes --ipv4 --ipv6'
|
||||||
|
alias pgg='ps -Af | grep' # requires an argument
|
||||||
|
alias ..='cd ..'
|
||||||
|
|
||||||
|
if [ $UID -ne 0 ]; then
|
||||||
|
alias scat='sudo cat'
|
||||||
|
alias svim='sudoedit'
|
||||||
|
alias root='sudo -i'
|
||||||
|
alias netctl='sudo netctl'
|
||||||
|
fi
|
||||||
|
|
||||||
|
alias l='ls -hF --color=auto'
|
||||||
|
alias ls='ls -hF --color=auto'
|
||||||
|
alias lr='ls -Rh' # recursive ls
|
||||||
|
alias ll='ls -lh'
|
||||||
|
alias la='ll -Ah'
|
||||||
|
alias lx='ll -BXh' # sort by extension
|
||||||
|
alias lz='ll -rSh' # sort by size
|
||||||
|
alias lt='ll -rth' # sort by date
|
||||||
|
alias lm='la -h | more'
|
||||||
|
alias rm=' timeout 3 rm -Iv --one-file-system'
|
||||||
|
alias ln='ln -i'
|
||||||
|
alias chown='chown --preserve-root'
|
||||||
|
alias chmod='chmod --preserve-root'
|
||||||
|
alias chgrp='chgrp --preserve-root'
|
||||||
|
alias cls=' echo -ne "\033c"'
|
||||||
|
alias ps='ps aux k%cpu'
|
||||||
|
alias new='touch'
|
||||||
|
alias re='reboot'
|
||||||
|
alias off='poweroff'
|
||||||
|
alias vol='alsamixer'
|
||||||
|
|
||||||
|
# error tolerant
|
||||||
|
alias q=' exit'
|
||||||
|
alias Q=' exit'
|
||||||
|
alias x=' exit'
|
||||||
|
alias cd..='cd ..'
|
||||||
|
|
||||||
|
|
||||||
|
## Package aliases
|
||||||
|
alias pkgupdate='yaourt -Syua'
|
||||||
|
alias pkgsearch='yaourt'
|
||||||
|
alias pkginstall='yaourt -S'
|
||||||
|
alias pkgremove='sudo pacman -R'
|
||||||
|
alias pkginfo='sudo pacman -Si'
|
||||||
|
alias pkgclean='sudo pacman -Sc'
|
||||||
|
|
||||||
|
# make neovim the default
|
||||||
|
alias vim='nvim'
|
||||||
|
|
||||||
|
alias mmk2410='cat /home/mmk/.mmk2410'
|
||||||
|
|
||||||
|
# If SSH Client is active, show text "ssh-session"
|
||||||
|
if [ -n "$SSH_CLIENT" ]; then text=" ssh-session"
|
||||||
|
fi
|
||||||
|
export PS1='\[\e[1;32m\]\u@\h:\w${text}$\[\e[m\] '
|
||||||
|
|
||||||
|
# PS1='[\u@\h \W]\$ '
|
||||||
|
PS1='\[\e[1;36m\]\h \[\e[1;31m\]\t \d \[\e[m\]\[\e[1;32m\]\w \[\e[m\]\n \[\e[1;35m\]\u\[\e[1;33m\] >\[\e[m\] '
|
||||||
|
#powerline-daemon -q
|
||||||
|
#POWERLINE_BASH_CONTINUATION=1
|
||||||
|
#POWERLINE_BASH_SELECT=1
|
||||||
|
#. /usr/lib/python3.4/site-packages/powerline/bindings/bash/powerline.sh
|
||||||
|
PATH='$PATH:/bin:/sbin:/home/mmk/.gem/ruby/2.2.0/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/share/java/gradle/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/usr/local/texlive/2015/bin/x86_64-linux'
|
4
fish/cdl.fish
Normal file
4
fish/cdl.fish
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
function cdl
|
||||||
|
cd $argv
|
||||||
|
l
|
||||||
|
end
|
43
fish/config.fish
Normal file
43
fish/config.fish
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
set -x PATH $PATH /home/mmk2410/bin /usr/local/bin /usr/bin /bin /usr/local/games /usr/games /home/mmk/.gem/ruby/2.2.0/bin /usr/local/texlive/2015/bin/x86_64-linux /home/mmk/.gem/ruby/2.3.0/bin /home/mmk/.go/bin /opt/nodejs/bin ~/.bin/
|
||||||
|
|
||||||
|
set -x ARCHFLAGS -arch_x86_64
|
||||||
|
|
||||||
|
eval (thefuck --alias | tr '\n' ';')
|
||||||
|
alias l="ls"
|
||||||
|
alias diff='colordiff'
|
||||||
|
alias grep='grep --color=auto'
|
||||||
|
alias more='less'
|
||||||
|
alias df='df -h'
|
||||||
|
alias du='du -c -h'
|
||||||
|
alias mkdir='mkdir -p -v'
|
||||||
|
alias nano='nano -w'
|
||||||
|
alias ping='ping -c 3'
|
||||||
|
alias pingtest='ping -c 3 marcel-kapfer.de'
|
||||||
|
alias dmesg='dmesg -HL'
|
||||||
|
alias da='date "+%A, %B %d, %Y [%T]"'
|
||||||
|
alias du1='du --max-depth=1'
|
||||||
|
alias hist='history | grep' # requires an argument
|
||||||
|
alias openports='ss --all --numeric --processes --ipv4 --ipv6'
|
||||||
|
alias pgg='ps -Af | grep' # requires an argument
|
||||||
|
alias rm=' timeout 3 rm -Iv --one-file-system'
|
||||||
|
alias ln='ln -i'
|
||||||
|
alias chown='chown --preserve-root'
|
||||||
|
alias chmod='chmod --preserve-root'
|
||||||
|
alias chgrp='chgrp --preserve-root'
|
||||||
|
alias cls=' echo -ne "\033c"'
|
||||||
|
alias ps='ps aux k%cpu'
|
||||||
|
alias new='touch'
|
||||||
|
alias re='reboot'
|
||||||
|
alias off='poweroff'
|
||||||
|
alias vol='alsamixer'
|
||||||
|
alias q=' exit'
|
||||||
|
alias Q=' exit'
|
||||||
|
alias x=' exit'
|
||||||
|
alias cd..='cd ..'
|
||||||
|
alias mmk2410='cat /home/mmk/.mmk2410'
|
||||||
|
mmk2410
|
||||||
|
|
||||||
|
set -Ux EDITOR nvim
|
||||||
|
set -Ux VISUAL nvim
|
||||||
|
set -Ux GUIX_LOCPATH $HOME/.guix-profile/lib/locale
|
||||||
|
set -Ux GOPATH ~/.go
|
91
fish/fish_prompt.fish
Normal file
91
fish/fish_prompt.fish
Normal file
|
@ -0,0 +1,91 @@
|
||||||
|
function fish_prompt --description 'Write out the prompt'
|
||||||
|
set -l last_status $status
|
||||||
|
|
||||||
|
# Just calculate this once, to save a few cycles when displaying the prompt
|
||||||
|
if not set -q __fish_prompt_hostname
|
||||||
|
set -g __fish_prompt_hostname (hostname|cut -d . -f 1)
|
||||||
|
end
|
||||||
|
|
||||||
|
set -l normal (set_color normal)
|
||||||
|
|
||||||
|
# Hack; fish_config only copies the fish_prompt function (see #736)
|
||||||
|
if not set -q -g __fish_classic_git_functions_defined
|
||||||
|
set -g __fish_classic_git_functions_defined
|
||||||
|
|
||||||
|
function __fish_repaint_user --on-variable fish_color_user --description "Event handler, repaint when fish_color_user changes"
|
||||||
|
if status --is-interactive
|
||||||
|
commandline -f repaint ^/dev/null
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function __fish_repaint_host --on-variable fish_color_host --description "Event handler, repaint when fish_color_host changes"
|
||||||
|
if status --is-interactive
|
||||||
|
commandline -f repaint ^/dev/null
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function __fish_repaint_status --on-variable fish_color_status --description "Event handler; repaint when fish_color_status changes"
|
||||||
|
if status --is-interactive
|
||||||
|
commandline -f repaint ^/dev/null
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function __fish_repaint_bind_mode --on-variable fish_key_bindings --description "Event handler; repaint when fish_key_bindings changes"
|
||||||
|
if status --is-interactive
|
||||||
|
commandline -f repaint ^/dev/null
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# initialize our new variables
|
||||||
|
if not set -q __fish_classic_git_prompt_initialized
|
||||||
|
set -qU fish_color_user; or set -U fish_color_user -o green
|
||||||
|
set -qU fish_color_host; or set -U fish_color_host -o cyan
|
||||||
|
set -qU fish_color_status; or set -U fish_color_status red
|
||||||
|
set -U __fish_classic_git_prompt_initialized
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
set -l color_cwd
|
||||||
|
set -l prefix
|
||||||
|
switch $USER
|
||||||
|
case root toor
|
||||||
|
if set -q fish_color_cwd_root
|
||||||
|
set color_cwd $fish_color_cwd_root
|
||||||
|
else
|
||||||
|
set color_cwd $fish_color_cwd
|
||||||
|
end
|
||||||
|
set suffix '#'
|
||||||
|
case '*'
|
||||||
|
set color_cwd $fish_color_cwd
|
||||||
|
set suffix '>'
|
||||||
|
end
|
||||||
|
|
||||||
|
set -l prompt_status
|
||||||
|
if test $last_status -ne 0
|
||||||
|
set prompt_status ' ' (set_color $fish_color_status) "[$last_status]" "$normal"
|
||||||
|
end
|
||||||
|
|
||||||
|
set -l mode_str
|
||||||
|
switch "$fish_key_bindings"
|
||||||
|
case '*_vi_*' '*_vi'
|
||||||
|
# possibly fish_vi_key_bindings, or custom key bindings
|
||||||
|
# that includes the name "vi"
|
||||||
|
set mode_str (
|
||||||
|
echo -n " "
|
||||||
|
switch $fish_bind_mode
|
||||||
|
case default
|
||||||
|
set_color --bold --background red white
|
||||||
|
echo -n "[N]"
|
||||||
|
case insert
|
||||||
|
set_color --bold green
|
||||||
|
echo -n "[I]"
|
||||||
|
case visual
|
||||||
|
set_color --bold magenta
|
||||||
|
echo -n "[V]"
|
||||||
|
end
|
||||||
|
set_color normal
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
echo -n -s (set_color $fish_color_user) "$USER" $normal @ (set_color $fish_color_host) "$__fish_prompt_hostname" $normal ' ' (set_color $color_cwd) (prompt_pwd) $normal (__fish_git_prompt) $normal $prompt_status "$mode_str" "> "
|
||||||
|
end
|
3
fish/g.fish
Normal file
3
fish/g.fish
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
function g
|
||||||
|
git $args
|
||||||
|
end
|
5
fish/haha.fish
Normal file
5
fish/haha.fish
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
function haha
|
||||||
|
for x in (seq 10)
|
||||||
|
echo hahahahahahahahahahahahahahahahahaha
|
||||||
|
end
|
||||||
|
end
|
3
fish/vim.fish
Normal file
3
fish/vim.fish
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
function vim
|
||||||
|
nvim $argv
|
||||||
|
end
|
187
i3config
Normal file
187
i3config
Normal file
|
@ -0,0 +1,187 @@
|
||||||
|
# This file has been auto-generated by i3-config-wizard(1).
|
||||||
|
# It will not be overwritten, so edit it as you like.
|
||||||
|
#
|
||||||
|
# Should you change your keyboard layout some time, delete
|
||||||
|
# this file and re-run i3-config-wizard(1).
|
||||||
|
#
|
||||||
|
|
||||||
|
# i3 config file (v4)
|
||||||
|
#
|
||||||
|
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
|
||||||
|
|
||||||
|
set $mod Mod4
|
||||||
|
|
||||||
|
# Font for window titles. Will also be used by the bar unless a different font
|
||||||
|
# is used in the bar {} block below.
|
||||||
|
# This font is widely installed, provides lots of unicode glyphs, right-to-left
|
||||||
|
# text rendering and scalability on retina/hidpi displays (thanks to pango).
|
||||||
|
font pango:Hack 10
|
||||||
|
# Before i3 v4.8, we used to recommend this one as the default:
|
||||||
|
# font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
|
||||||
|
# The font above is very space-efficient, that is, it looks good, sharp and
|
||||||
|
# clear in small sizes. However, its unicode glyph coverage is limited, the old
|
||||||
|
# X core fonts rendering does not support right-to-left and this being a bitmap
|
||||||
|
# font, it doesn’t scale on retina/hidpi displays.
|
||||||
|
|
||||||
|
# Use Mouse+$mod to drag floating windows to their wanted position
|
||||||
|
floating_modifier $mod
|
||||||
|
|
||||||
|
# start a terminal
|
||||||
|
bindsym $mod+Return exec terminology
|
||||||
|
|
||||||
|
# kill focused window
|
||||||
|
bindsym $mod+Shift+q kill
|
||||||
|
|
||||||
|
# start dmenu (a program launcher)
|
||||||
|
bindsym $mod+d exec dmenu_run
|
||||||
|
# There also is the (new) i3-dmenu-desktop which only displays applications
|
||||||
|
# shipping a .desktop file. It is a wrapper around dmenu, so you need that
|
||||||
|
# installed.
|
||||||
|
# bindsym $mod+d exec --no-startup-id i3-dmenu-desktop
|
||||||
|
## gmrun shortcut
|
||||||
|
bindsym $mod+F2 exec gmrun
|
||||||
|
|
||||||
|
# change focus
|
||||||
|
bindsym $mod+j focus left
|
||||||
|
bindsym $mod+k focus down
|
||||||
|
bindsym $mod+l focus up
|
||||||
|
bindsym $mod+odiaeresis focus right
|
||||||
|
|
||||||
|
# alternatively, you can use the cursor keys:
|
||||||
|
bindsym $mod+Left focus left
|
||||||
|
bindsym $mod+Down focus down
|
||||||
|
bindsym $mod+Up focus up
|
||||||
|
bindsym $mod+Right focus right
|
||||||
|
|
||||||
|
# move focused window
|
||||||
|
bindsym $mod+Shift+j move left
|
||||||
|
bindsym $mod+Shift+k move down
|
||||||
|
bindsym $mod+Shift+l move up
|
||||||
|
bindsym $mod+Shift+odiaeresis move right
|
||||||
|
|
||||||
|
# alternatively, you can use the cursor keys:
|
||||||
|
bindsym $mod+Shift+Left move left
|
||||||
|
bindsym $mod+Shift+Down move down
|
||||||
|
bindsym $mod+Shift+Up move up
|
||||||
|
bindsym $mod+Shift+Right move right
|
||||||
|
|
||||||
|
# split in horizontal orientation
|
||||||
|
bindsym $mod+h split h
|
||||||
|
|
||||||
|
# split in vertical orientation
|
||||||
|
bindsym $mod+v split v
|
||||||
|
|
||||||
|
# enter fullscreen mode for the focused container
|
||||||
|
bindsym $mod+f fullscreen toggle
|
||||||
|
|
||||||
|
# change container layout (stacked, tabbed, toggle split)
|
||||||
|
bindsym $mod+s layout stacking
|
||||||
|
bindsym $mod+w layout tabbed
|
||||||
|
bindsym $mod+e layout toggle split
|
||||||
|
|
||||||
|
# toggle tiling / floating
|
||||||
|
bindsym $mod+Shift+space floating toggle
|
||||||
|
|
||||||
|
# change focus between tiling / floating windows
|
||||||
|
bindsym $mod+space focus mode_toggle
|
||||||
|
|
||||||
|
# focus the parent container
|
||||||
|
bindsym $mod+a focus parent
|
||||||
|
|
||||||
|
# focus the child container
|
||||||
|
#bindsym $mod+d focus child
|
||||||
|
|
||||||
|
# switch to workspace
|
||||||
|
bindsym $mod+1 workspace 1
|
||||||
|
bindsym $mod+2 workspace 2
|
||||||
|
bindsym $mod+3 workspace 3
|
||||||
|
bindsym $mod+4 workspace 4
|
||||||
|
bindsym $mod+5 workspace 5
|
||||||
|
bindsym $mod+6 workspace 6
|
||||||
|
bindsym $mod+7 workspace 7
|
||||||
|
bindsym $mod+8 workspace 8
|
||||||
|
bindsym $mod+9 workspace 9
|
||||||
|
bindsym $mod+0 workspace 10
|
||||||
|
|
||||||
|
# move focused container to workspace
|
||||||
|
bindsym $mod+Shift+1 move container to workspace 1
|
||||||
|
bindsym $mod+Shift+2 move container to workspace 2
|
||||||
|
bindsym $mod+Shift+3 move container to workspace 3
|
||||||
|
bindsym $mod+Shift+4 move container to workspace 4
|
||||||
|
bindsym $mod+Shift+5 move container to workspace 5
|
||||||
|
bindsym $mod+Shift+6 move container to workspace 6
|
||||||
|
bindsym $mod+Shift+7 move container to workspace 7
|
||||||
|
bindsym $mod+Shift+8 move container to workspace 8
|
||||||
|
bindsym $mod+Shift+9 move container to workspace 9
|
||||||
|
bindsym $mod+Shift+0 move container to workspace 10
|
||||||
|
|
||||||
|
# reload the configuration file
|
||||||
|
bindsym $mod+Shift+c reload
|
||||||
|
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
|
||||||
|
bindsym $mod+Shift+r restart
|
||||||
|
# exit i3 (logs you out of your X session)
|
||||||
|
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
|
||||||
|
|
||||||
|
# resize window (you can also use the mouse for that)
|
||||||
|
mode "resize" {
|
||||||
|
# These bindings trigger as soon as you enter the resize mode
|
||||||
|
|
||||||
|
# Pressing left will shrink the window’s width.
|
||||||
|
# Pressing right will grow the window’s width.
|
||||||
|
# Pressing up will shrink the window’s height.
|
||||||
|
# Pressing down will grow the window’s height.
|
||||||
|
bindsym j resize shrink width 10 px or 10 ppt
|
||||||
|
bindsym k resize grow height 10 px or 10 ppt
|
||||||
|
bindsym l resize shrink height 10 px or 10 ppt
|
||||||
|
bindsym odiaeresis resize grow width 10 px or 10 ppt
|
||||||
|
|
||||||
|
# same bindings, but for the arrow keys
|
||||||
|
bindsym Left resize shrink width 10 px or 10 ppt
|
||||||
|
bindsym Down resize grow height 10 px or 10 ppt
|
||||||
|
bindsym Up resize shrink height 10 px or 10 ppt
|
||||||
|
bindsym Right resize grow width 10 px or 10 ppt
|
||||||
|
|
||||||
|
# back to normal: Enter or Escape
|
||||||
|
bindsym Return mode "default"
|
||||||
|
bindsym Escape mode "default"
|
||||||
|
}
|
||||||
|
|
||||||
|
bindsym $mod+r mode "resize"
|
||||||
|
|
||||||
|
# Start i3bar to display a workspace bar (plus the system information i3status
|
||||||
|
# finds out, if available)
|
||||||
|
bar {
|
||||||
|
status_command python ~/.i3pystatus
|
||||||
|
position top
|
||||||
|
mode dock
|
||||||
|
colors{
|
||||||
|
background #212121
|
||||||
|
statusline #ffffff
|
||||||
|
separator #616161
|
||||||
|
|
||||||
|
focused_workspace #673AB7 #673AB7 #ffffff
|
||||||
|
active_workspace #5E35B1 #5E35B1 #ffffff
|
||||||
|
inactive_workspace #512DA8 #512DA8 #e0e0e0
|
||||||
|
urgent_workspace #651FFF #651FFF #ffffff
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#class border backgr. text indicat
|
||||||
|
client.focused #673AB7 #673AB7 #ffffff #673AB7
|
||||||
|
client.focused_inactive #5E35B1 #5E35B1 #ffffff #5E35B1
|
||||||
|
client.unfocused #512DA8 #512DA8 #E0E0E0 #512DA8
|
||||||
|
client.urgent #651FFF #651FFF #ffffff #651FFF
|
||||||
|
client.placeholder #000000 #0c0c0c #ffffff #000000
|
||||||
|
|
||||||
|
|
||||||
|
popup_during_fullscreen smart
|
||||||
|
|
||||||
|
## custom keybindings
|
||||||
|
bindsym $mod+b exec vivaldi-snapshot
|
||||||
|
bindsym $mod+t exec nautilus
|
||||||
|
bindsym $mod+m exec spotify
|
||||||
|
bindsym $mod+p exec vlc
|
||||||
|
bindsym $mod+x exec i3lock -c 000000
|
||||||
|
|
||||||
|
exec ./output.sh
|
||||||
|
exec --no-startup-id nitrogen --restore &
|
86
i3pystatus
Executable file
86
i3pystatus
Executable file
|
@ -0,0 +1,86 @@
|
||||||
|
from i3pystatus import Status
|
||||||
|
|
||||||
|
status = Status(standalone=True)
|
||||||
|
|
||||||
|
# Displays clock like this:
|
||||||
|
# Tue 30 Jul 11:59:46 PM KW31
|
||||||
|
# ^-- calendar week
|
||||||
|
status.register("clock",
|
||||||
|
format="%a %-d %b %X ",)
|
||||||
|
|
||||||
|
# Shows the average load of the last minute and the last 5 minutes
|
||||||
|
# (the default value for format is used)
|
||||||
|
status.register("load")
|
||||||
|
|
||||||
|
# Shows your CPU temperature, if you have a Intel CPU
|
||||||
|
status.register("temp",
|
||||||
|
format="{temp:.0f}°C",)
|
||||||
|
|
||||||
|
# The battery monitor has many formatting options, see README for details
|
||||||
|
# This would look like this, when discharging (or charging)
|
||||||
|
# ↓14.22W 56.15% [77.81%] 2h:41m
|
||||||
|
# And like this if full:
|
||||||
|
# =14.22W 100.0% [91.21%]
|
||||||
|
#
|
||||||
|
# This would also display a desktop notification (via D-Bus) if the percentage
|
||||||
|
# goes below 5 percent while discharging. The block will also color RED.
|
||||||
|
# If you don't have a desktop notification demon yet, take a look at dunst:
|
||||||
|
# http://www.knopwob.org/dunst/
|
||||||
|
status.register("battery",
|
||||||
|
format="{status}/{percentage:.2f}% {remaining:%E%hh:%Mm}",
|
||||||
|
alert=True,
|
||||||
|
alert_percentage=5,
|
||||||
|
status={
|
||||||
|
"DIS": "↓",
|
||||||
|
"CHR": "↑",
|
||||||
|
"FULL": "=",
|
||||||
|
},)
|
||||||
|
|
||||||
|
status.register("backlight",
|
||||||
|
format="☀ {percentage}%",
|
||||||
|
backlight="intel_backlight",
|
||||||
|
)
|
||||||
|
|
||||||
|
# Displays whether a DHCP client is running
|
||||||
|
status.register("runwatch",
|
||||||
|
name="DHCP",
|
||||||
|
path="/var/run/dhclient*.pid",)
|
||||||
|
|
||||||
|
# Shows the address and up/down state of eth0. If it is up the address is shown in
|
||||||
|
# green (the default value of color_up) and the CIDR-address is shown
|
||||||
|
# (i.e. 10.10.10.42/24).
|
||||||
|
# If it's down just the interface name (eth0) will be displayed in red
|
||||||
|
# (defaults of format_down and color_down)
|
||||||
|
#
|
||||||
|
# Note: the network module requires PyPI package netifaces
|
||||||
|
status.register("network",
|
||||||
|
interface="enp3s0",
|
||||||
|
format_up="{v4cidr}",)
|
||||||
|
|
||||||
|
# Note: requires both netifaces and basiciw (for essid and quality)
|
||||||
|
status.register("network",
|
||||||
|
interface="wlp0s20u9",
|
||||||
|
format_up="{essid} {quality:03.0f}%",)
|
||||||
|
|
||||||
|
# Shows disk usage of /
|
||||||
|
# Format:
|
||||||
|
# 42/128G [86G]
|
||||||
|
status.register("disk",
|
||||||
|
path="/",
|
||||||
|
format="{used}/{total}G [{avail}G]",)
|
||||||
|
|
||||||
|
# For /home
|
||||||
|
status.register("disk",
|
||||||
|
path="/home",
|
||||||
|
format="{used}/{total}G [{avail}G]",)
|
||||||
|
|
||||||
|
# Shows pulseaudio default sink volume
|
||||||
|
#
|
||||||
|
# Note: requires libpulseaudio from PyPI
|
||||||
|
status.register("pulseaudio",
|
||||||
|
format="♪{volume}",)
|
||||||
|
|
||||||
|
status.register("spotify",
|
||||||
|
format="{artist} - {title}",)
|
||||||
|
|
||||||
|
status.run()
|
|
@ -1,4 +1,28 @@
|
||||||
execute pathogen#infect()
|
" vim-plug plugin manager
|
||||||
|
call plug#begin('~/.vim/plugged')
|
||||||
|
|
||||||
|
Plug 'benekastah/neomake'
|
||||||
|
Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets'
|
||||||
|
Plug 'junegunn/vim-easy-align'
|
||||||
|
Plug 'Shougo/deoplete.nvim'
|
||||||
|
Plug 'vim-scripts/gitignore.vim'
|
||||||
|
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
|
||||||
|
Plug 'Xuyuanp/nerdtree-git-plugin'
|
||||||
|
Plug 'StanAngeloff/php.vim'
|
||||||
|
Plug 'rust-lang/rust.vim'
|
||||||
|
Plug 'majutsushi/tagbar'
|
||||||
|
Plug 'vim-scripts/taglist.vim'
|
||||||
|
Plug 'bling/vim-airline'
|
||||||
|
Plug 'Townk/vim-autoclose'
|
||||||
|
Plug 'kchmck/vim-coffee-script'
|
||||||
|
Plug 'tpope/vim-fugitive'
|
||||||
|
Plug 'airblade/vim-gitgutter'
|
||||||
|
Plug 'vim-latex/vim-latex'
|
||||||
|
Plug 'morhetz/gruvbox'
|
||||||
|
Plug 'dag/vim-fish'
|
||||||
|
Plug 'dart-lang/dart-vim-plugin'
|
||||||
|
|
||||||
|
call plug#end()
|
||||||
|
|
||||||
set nocompatible
|
set nocompatible
|
||||||
filetype indent plugin on
|
filetype indent plugin on
|
||||||
|
@ -50,16 +74,23 @@ set tm=500
|
||||||
" Color
|
" Color
|
||||||
|
|
||||||
syntax on
|
syntax on
|
||||||
colorscheme mmk2410
|
colorscheme gruvbox
|
||||||
|
set background=dark
|
||||||
set cursorline
|
set cursorline
|
||||||
if has("gui_running")
|
if has("gui_running")
|
||||||
set guioptions-=T
|
set guioptions-=T
|
||||||
set guioptions+=e
|
set guioptions+=e
|
||||||
set t_Co=256
|
set t_Co=256
|
||||||
set guitablabel=%M\ %t
|
set guitablabel=%M\ %t
|
||||||
|
if has("gui_gtk2")
|
||||||
|
set guifont=Hermit\ 10
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
set encoding=utf-8
|
set encoding=utf-8
|
||||||
set ffs=unix,dos,mac
|
set ffs=unix,dos,mac
|
||||||
|
set textwidth=80
|
||||||
|
set colorcolumn=+1
|
||||||
|
hi ColorColumn guibg=#2d2d2d ctermbg=238
|
||||||
|
|
||||||
" Files, Backups and undo
|
" Files, Backups and undo
|
||||||
|
|
||||||
|
@ -114,12 +145,6 @@ nmap <M-k> mz:m-2<cr>`z
|
||||||
vmap <M-j> :m'>+<cr>`<my`>mzgv`yo`z
|
vmap <M-j> :m'>+<cr>`<my`>mzgv`yo`z
|
||||||
vmap <M-k> :m'<-2<cr>`>my`<mzgv`yo`z
|
vmap <M-k> :m'<-2<cr>`>my`<mzgv`yo`z
|
||||||
|
|
||||||
if has("mac") || has("macunix")
|
|
||||||
nmap <D-j> <M-j>
|
|
||||||
nmap <D-k> <M-k>
|
|
||||||
vmap <D-j> <M-j>
|
|
||||||
vmap <D-k> <M-k>
|
|
||||||
endif
|
|
||||||
"
|
"
|
||||||
" Delete trailing white space on save, useful for Python and
|
" Delete trailing white space on save, useful for Python and
|
||||||
" CoffeeScript ;)
|
" CoffeeScript ;)
|
||||||
|
@ -131,6 +156,9 @@ endfunc
|
||||||
autocmd BufWrite *.py :call DeleteTrailingWS()
|
autocmd BufWrite *.py :call DeleteTrailingWS()
|
||||||
autocmd BufWrite *.coffee :call DeleteTrailingWS()
|
autocmd BufWrite *.coffee :call DeleteTrailingWS()
|
||||||
|
|
||||||
|
" Neomake lint
|
||||||
|
autocmd! BufWritePost,BufEnter * Neomake
|
||||||
|
|
||||||
map <leader>ss :setlocal spell!<cr>
|
map <leader>ss :setlocal spell!<cr>
|
||||||
|
|
||||||
" Shortcuts using <leader>
|
" Shortcuts using <leader>
|
||||||
|
@ -150,29 +178,27 @@ map <leader>pp :setlocal paste!<cr>
|
||||||
|
|
||||||
" My Changes
|
" My Changes
|
||||||
|
|
||||||
inoremap jk <ESC>
|
inoremap jk <ESC>
|
||||||
set listchars=tab:>-,trail:-
|
set listchars=tab:>-,trail:-
|
||||||
set list
|
set list
|
||||||
|
set clipboard+=unnamedplus
|
||||||
|
|
||||||
|
" Plugin settings
|
||||||
let g:airline_powerline_fonts = 1
|
let g:airline_powerline_fonts = 1
|
||||||
let g:airline#extensions#tabline#enabled = 1
|
let g:airline#extensions#tabline#enabled = 1
|
||||||
let g:airline_theme='luna'
|
let g:airline_theme='gruvbox'
|
||||||
|
|
||||||
let g:syntastic_check_on_open = 1
|
let g:deoplete#enable_at_startup = 1
|
||||||
let g:syntastic_check_on_wq = 0
|
|
||||||
let g:syntastic_python_python_exec = '/usr/bin/python3'
|
|
||||||
|
|
||||||
set grepprg=grep\ -nH\ $*
|
set grepprg=grep\ -nH\ $*
|
||||||
let g:tex_flavor='latex'
|
let g:tex_flavor='latex'
|
||||||
let g:tex_fold_enabled=1
|
let g:tex_fold_enabled=1
|
||||||
let g:Tex_CompileRule_pdf = 'pdflatex --interaction=nonstopmode $*'
|
let g:Tex_CompileRule_pdf = 'pdflatex --interaction=nonstopmode $*'
|
||||||
|
|
||||||
" Powerline
|
|
||||||
"python from powerline.vim import setup as powerline_setup
|
|
||||||
"python powerline_setup()
|
|
||||||
"python del powerline_setup
|
|
||||||
|
|
||||||
" Filetype specific settings
|
" Filetype specific settings
|
||||||
autocmd Filetype html setlocal ts=2 sts=2 sw=2
|
autocmd Filetype html setlocal ts=2 sts=2 sw=2
|
||||||
autocmd Filetype javascript setlocal ts=2 sts=2 sw=2
|
autocmd Filetype javascript setlocal ts=2 sts=2 sw=2
|
||||||
autocmd Filetype coffee setlocal ts=2 sts=2 sw=2
|
autocmd Filetype coffee setlocal ts=2 sts=2 sw=2
|
||||||
|
|
||||||
|
" Syntax highlighting for HtMd (Hypertext Markdown)
|
||||||
|
au BufRead,BufNewFile *.htmd set filetype=html
|
2
mutt/mailcap
Normal file
2
mutt/mailcap
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
text/html; lynx -assume_charset=%{charset} -display_charset=utf-8 -dump %s; nametemplate=%s.html; copiousoutput
|
||||||
|
|
49
mutt/muttrc
Normal file
49
mutt/muttrc
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
set header_cache = "~/.cache/mutt"
|
||||||
|
set imap_check_subscribed
|
||||||
|
set imap_keepalive = 300
|
||||||
|
unset imap_passive
|
||||||
|
set mail_check = 60
|
||||||
|
set mbox_type=Maildir
|
||||||
|
set sort=threads
|
||||||
|
set sort_aux=last-date-received
|
||||||
|
set sleep_time = 0
|
||||||
|
|
||||||
|
|
||||||
|
## Work
|
||||||
|
source "~/.mutt/work"
|
||||||
|
folder-hook $folder 'source ~/.mutt/work'
|
||||||
|
|
||||||
|
## Uni
|
||||||
|
source "~/.mutt/uni"
|
||||||
|
folder-hook marcel.kapfer@uni-ulm.de 'source ~/.mutt/uni'
|
||||||
|
|
||||||
|
## Private
|
||||||
|
source "~/.mutt/private"
|
||||||
|
folder-hook marcelmichaelkapfer@gmail.com 'source ~/.mutt/private'
|
||||||
|
|
||||||
|
|
||||||
|
## Shortcuts
|
||||||
|
macro index,pager <f2> '<sync-mailbox><enter-command>source ~/.mutt/private<enter><change-folder>!<enter>'
|
||||||
|
|
||||||
|
macro index,pager <f3> '<sync-mailbox><enter-command>source ~/.mutt/work<enter><change-folder>!<enter>'
|
||||||
|
|
||||||
|
macro index,pager <f4> '<sync-mailbox><enter-command>source ~/.mutt/uni<enter><change-folder>!<enter>'
|
||||||
|
|
||||||
|
## Settings
|
||||||
|
|
||||||
|
set send_charset="utf-8"
|
||||||
|
|
||||||
|
## Theming
|
||||||
|
|
||||||
|
source ~/.mutt/theme
|
||||||
|
source /usr/share/doc/mutt/samples/gpg.rc
|
||||||
|
|
||||||
|
## HTML mails
|
||||||
|
|
||||||
|
set mailcap_path = ~/.mutt/mailcap
|
||||||
|
auto_view text/html
|
||||||
|
|
||||||
|
## Abook
|
||||||
|
set query_command= "abook --mutt-query '%s'"
|
||||||
|
macro index,pager a "<pipe-message>abook --add-email-quiet<return>" "Add this sender to Abook"
|
||||||
|
bind editor <Tab> complete-query
|
6
mutt/sig
Normal file
6
mutt/sig
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
Marcel Kapfer (mmk2410)
|
||||||
|
marcel-kapfer.de
|
||||||
|
OpenPGP: 0x09F21B09
|
||||||
|
Google+: +MarcelMichaelKapfer
|
||||||
|
Twitter: @mmk2410
|
||||||
|
GitHub: /mmk2410
|
87
mutt/theme
Normal file
87
mutt/theme
Normal file
|
@ -0,0 +1,87 @@
|
||||||
|
## Theme kindly inspired from
|
||||||
|
## http://nongeekshandbook.blogspot.ie/2009/03/mutt-color-configuration.html
|
||||||
|
|
||||||
|
## Colours for items in the index
|
||||||
|
color index brightcyan black ~N
|
||||||
|
color index brightred black ~O
|
||||||
|
color index brightyellow black ~F
|
||||||
|
color index black green ~T
|
||||||
|
color index brightred black ~D
|
||||||
|
mono index bold ~N
|
||||||
|
mono index bold ~F
|
||||||
|
mono index bold ~T
|
||||||
|
mono index bold ~D
|
||||||
|
|
||||||
|
## Highlights inside the body of a message.
|
||||||
|
|
||||||
|
## URLs
|
||||||
|
color body brightgreen black "(http|ftp|news|telnet|finger)://[^ \"\t\r\n]*"
|
||||||
|
color body brightgreen black "mailto:[-a-z_0-9.]+@[-a-z_0-9.]+"
|
||||||
|
mono body bold "(http|ftp|news|telnet|finger)://[^ \"\t\r\n]*"
|
||||||
|
mono body bold "mailto:[-a-z_0-9.]+@[-a-z_0-9.]+"
|
||||||
|
|
||||||
|
## Email addresses.
|
||||||
|
color body brightgreen black "[-a-z_0-9.%$]+@[-a-z_0-9.]+\\.[-a-z][-a-z]+"
|
||||||
|
|
||||||
|
## Header
|
||||||
|
color header green black "^from:"
|
||||||
|
color header green black "^to:"
|
||||||
|
color header green black "^cc:"
|
||||||
|
color header green black "^date:"
|
||||||
|
color header yellow black "^newsgroups:"
|
||||||
|
color header yellow black "^reply-to:"
|
||||||
|
color header brightcyan black "^subject:"
|
||||||
|
color header red black "^x-spam-rule:"
|
||||||
|
color header green black "^x-mailer:"
|
||||||
|
color header yellow black "^message-id:"
|
||||||
|
color header yellow black "^Organization:"
|
||||||
|
color header yellow black "^Organisation:"
|
||||||
|
color header yellow black "^User-Agent:"
|
||||||
|
color header yellow black "^message-id: .*pine"
|
||||||
|
color header yellow black "^X-Fnord:"
|
||||||
|
color header yellow black "^X-WebTV-Stationery:"
|
||||||
|
|
||||||
|
color header red black "^x-spam-rule:"
|
||||||
|
color header green black "^x-mailer:"
|
||||||
|
color header yellow black "^message-id:"
|
||||||
|
color header yellow black "^Organization:"
|
||||||
|
color header yellow black "^Organisation:"
|
||||||
|
color header yellow black "^User-Agent:"
|
||||||
|
color header yellow black "^message-id: .*pine"
|
||||||
|
color header yellow black "^X-Fnord:"
|
||||||
|
color header yellow black "^X-WebTV-Stationery:"
|
||||||
|
color header yellow black "^X-Message-Flag:"
|
||||||
|
color header yellow black "^X-Spam-Status:"
|
||||||
|
color header yellow black "^X-SpamProbe:"
|
||||||
|
color header red black "^X-SpamProbe: SPAM"
|
||||||
|
|
||||||
|
## Coloring quoted text - coloring the first 7 levels:
|
||||||
|
color quoted cyan black
|
||||||
|
color quoted1 yellow black
|
||||||
|
color quoted2 red black
|
||||||
|
color quoted3 green black
|
||||||
|
color quoted4 cyan black
|
||||||
|
color quoted5 yellow black
|
||||||
|
color quoted6 red black
|
||||||
|
color quoted7 green black
|
||||||
|
|
||||||
|
## Default color definitions
|
||||||
|
#color hdrdefault white green
|
||||||
|
color signature brightmagenta black
|
||||||
|
color indicator black cyan
|
||||||
|
color attachment black green
|
||||||
|
color error red black
|
||||||
|
color message white black
|
||||||
|
color search brightwhite magenta
|
||||||
|
color status brightyellow blue
|
||||||
|
color tree brightblue black
|
||||||
|
color normal white black
|
||||||
|
color tilde green black
|
||||||
|
color bold brightyellow black
|
||||||
|
#color underline magenta black
|
||||||
|
color markers brightcyan black
|
||||||
|
|
||||||
|
## Colour definitions when on a mono screen
|
||||||
|
mono bold bold
|
||||||
|
mono underline underline
|
||||||
|
mono indicator reverse
|
6
redshift
Normal file
6
redshift
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[redshift]
|
||||||
|
location-provider=manual
|
||||||
|
|
||||||
|
[manual]
|
||||||
|
lat=48
|
||||||
|
lon=010
|
12
screenrc
Normal file
12
screenrc
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
term screen-256color
|
||||||
|
startup_message off
|
||||||
|
hardstatus off
|
||||||
|
hardstatus alwayslastline
|
||||||
|
hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{= kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B} %m-%d %{W} %c %{g}]'
|
||||||
|
termcapinfo xterm* ti@:te@
|
||||||
|
vbell off
|
||||||
|
|
||||||
|
screen -t mutt 1 mutt
|
||||||
|
screen -t newsbeuter 2 newsbeuter
|
||||||
|
screen -t rainbowstream 3 rainbowstream
|
||||||
|
screen -t fish 0 fish
|
|
@ -1,3 +0,0 @@
|
||||||
let g:netrw_dirhistmax =10
|
|
||||||
let g:netrw_dirhist_cnt =1
|
|
||||||
let g:netrw_dirhist_1='/home/mmk/web/blogger-preprocessor/assets'
|
|
|
@ -1,347 +0,0 @@
|
||||||
" pathogen.vim - path option manipulation
|
|
||||||
" Maintainer: Tim Pope <http://tpo.pe/>
|
|
||||||
" Version: 2.3
|
|
||||||
|
|
||||||
" Install in ~/.vim/autoload (or ~\vimfiles\autoload).
|
|
||||||
"
|
|
||||||
" For management of individually installed plugins in ~/.vim/bundle (or
|
|
||||||
" ~\vimfiles\bundle), adding `execute pathogen#infect()` to the top of your
|
|
||||||
" .vimrc is the only other setup necessary.
|
|
||||||
"
|
|
||||||
" The API is documented inline below.
|
|
||||||
|
|
||||||
if exists("g:loaded_pathogen") || &cp
|
|
||||||
finish
|
|
||||||
endif
|
|
||||||
let g:loaded_pathogen = 1
|
|
||||||
|
|
||||||
" Point of entry for basic default usage. Give a relative path to invoke
|
|
||||||
" pathogen#interpose() (defaults to "bundle/{}"), or an absolute path to invoke
|
|
||||||
" pathogen#surround(). Curly braces are expanded with pathogen#expand():
|
|
||||||
" "bundle/{}" finds all subdirectories inside "bundle" inside all directories
|
|
||||||
" in the runtime path.
|
|
||||||
function! pathogen#infect(...) abort
|
|
||||||
for path in a:0 ? filter(reverse(copy(a:000)), 'type(v:val) == type("")') : ['bundle/{}']
|
|
||||||
if path =~# '^\%({\=[$~\\/]\|{\=\w:[\\/]\).*[{}*]'
|
|
||||||
call pathogen#surround(path)
|
|
||||||
elseif path =~# '^\%([$~\\/]\|\w:[\\/]\)'
|
|
||||||
call s:warn('Change pathogen#infect('.string(path).') to pathogen#infect('.string(path.'/{}').')')
|
|
||||||
call pathogen#surround(path . '/{}')
|
|
||||||
elseif path =~# '[{}*]'
|
|
||||||
call pathogen#interpose(path)
|
|
||||||
else
|
|
||||||
call s:warn('Change pathogen#infect('.string(path).') to pathogen#infect('.string(path.'/{}').')')
|
|
||||||
call pathogen#interpose(path . '/{}')
|
|
||||||
endif
|
|
||||||
endfor
|
|
||||||
call pathogen#cycle_filetype()
|
|
||||||
if pathogen#is_disabled($MYVIMRC)
|
|
||||||
return 'finish'
|
|
||||||
endif
|
|
||||||
return ''
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" Split a path into a list.
|
|
||||||
function! pathogen#split(path) abort
|
|
||||||
if type(a:path) == type([]) | return a:path | endif
|
|
||||||
if empty(a:path) | return [] | endif
|
|
||||||
let split = split(a:path,'\\\@<!\%(\\\\\)*\zs,')
|
|
||||||
return map(split,'substitute(v:val,''\\\([\\,]\)'',''\1'',"g")')
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" Convert a list to a path.
|
|
||||||
function! pathogen#join(...) abort
|
|
||||||
if type(a:1) == type(1) && a:1
|
|
||||||
let i = 1
|
|
||||||
let space = ' '
|
|
||||||
else
|
|
||||||
let i = 0
|
|
||||||
let space = ''
|
|
||||||
endif
|
|
||||||
let path = ""
|
|
||||||
while i < a:0
|
|
||||||
if type(a:000[i]) == type([])
|
|
||||||
let list = a:000[i]
|
|
||||||
let j = 0
|
|
||||||
while j < len(list)
|
|
||||||
let escaped = substitute(list[j],'[,'.space.']\|\\[\,'.space.']\@=','\\&','g')
|
|
||||||
let path .= ',' . escaped
|
|
||||||
let j += 1
|
|
||||||
endwhile
|
|
||||||
else
|
|
||||||
let path .= "," . a:000[i]
|
|
||||||
endif
|
|
||||||
let i += 1
|
|
||||||
endwhile
|
|
||||||
return substitute(path,'^,','','')
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" Convert a list to a path with escaped spaces for 'path', 'tag', etc.
|
|
||||||
function! pathogen#legacyjoin(...) abort
|
|
||||||
return call('pathogen#join',[1] + a:000)
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" Turn filetype detection off and back on again if it was already enabled.
|
|
||||||
function! pathogen#cycle_filetype() abort
|
|
||||||
if exists('g:did_load_filetypes')
|
|
||||||
filetype off
|
|
||||||
filetype on
|
|
||||||
endif
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" Check if a bundle is disabled. A bundle is considered disabled if its
|
|
||||||
" basename or full name is included in the list g:pathogen_disabled.
|
|
||||||
function! pathogen#is_disabled(path) abort
|
|
||||||
if a:path =~# '\~$'
|
|
||||||
return 1
|
|
||||||
endif
|
|
||||||
let sep = pathogen#slash()
|
|
||||||
let blacklist = map(
|
|
||||||
\ get(g:, 'pathogen_blacklist', get(g:, 'pathogen_disabled', [])) +
|
|
||||||
\ pathogen#split($VIMBLACKLIST),
|
|
||||||
\ 'substitute(v:val, "[\\/]$", "", "")')
|
|
||||||
return index(blacklist, fnamemodify(a:path, ':t')) != -1 || index(blacklist, a:path) != -1
|
|
||||||
endfunction "}}}1
|
|
||||||
|
|
||||||
" Prepend the given directory to the runtime path and append its corresponding
|
|
||||||
" after directory. Curly braces are expanded with pathogen#expand().
|
|
||||||
function! pathogen#surround(path) abort
|
|
||||||
let sep = pathogen#slash()
|
|
||||||
let rtp = pathogen#split(&rtp)
|
|
||||||
let path = fnamemodify(a:path, ':p:s?[\\/]\=$??')
|
|
||||||
let before = filter(pathogen#expand(path), '!pathogen#is_disabled(v:val)')
|
|
||||||
let after = filter(reverse(pathogen#expand(path.sep.'after')), '!pathogen#is_disabled(v:val[0:-7])')
|
|
||||||
call filter(rtp, 'index(before + after, v:val) == -1')
|
|
||||||
let &rtp = pathogen#join(before, rtp, after)
|
|
||||||
return &rtp
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" For each directory in the runtime path, add a second entry with the given
|
|
||||||
" argument appended. Curly braces are expanded with pathogen#expand().
|
|
||||||
function! pathogen#interpose(name) abort
|
|
||||||
let sep = pathogen#slash()
|
|
||||||
let name = a:name
|
|
||||||
if has_key(s:done_bundles, name)
|
|
||||||
return ""
|
|
||||||
endif
|
|
||||||
let s:done_bundles[name] = 1
|
|
||||||
let list = []
|
|
||||||
for dir in pathogen#split(&rtp)
|
|
||||||
if dir =~# '\<after$'
|
|
||||||
let list += reverse(filter(pathogen#expand(dir[0:-6].name.sep.'after'), '!pathogen#is_disabled(v:val[0:-7])')) + [dir]
|
|
||||||
else
|
|
||||||
let list += [dir] + filter(pathogen#expand(dir.sep.name), '!pathogen#is_disabled(v:val)')
|
|
||||||
endif
|
|
||||||
endfor
|
|
||||||
let &rtp = pathogen#join(pathogen#uniq(list))
|
|
||||||
return 1
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
let s:done_bundles = {}
|
|
||||||
|
|
||||||
" Invoke :helptags on all non-$VIM doc directories in runtimepath.
|
|
||||||
function! pathogen#helptags() abort
|
|
||||||
let sep = pathogen#slash()
|
|
||||||
for glob in pathogen#split(&rtp)
|
|
||||||
for dir in map(split(glob(glob), "\n"), 'v:val.sep."/doc/".sep')
|
|
||||||
if (dir)[0 : strlen($VIMRUNTIME)] !=# $VIMRUNTIME.sep && filewritable(dir) == 2 && !empty(split(glob(dir.'*.txt'))) && (!filereadable(dir.'tags') || filewritable(dir.'tags'))
|
|
||||||
silent! execute 'helptags' pathogen#fnameescape(dir)
|
|
||||||
endif
|
|
||||||
endfor
|
|
||||||
endfor
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
command! -bar Helptags :call pathogen#helptags()
|
|
||||||
|
|
||||||
" Execute the given command. This is basically a backdoor for --remote-expr.
|
|
||||||
function! pathogen#execute(...) abort
|
|
||||||
for command in a:000
|
|
||||||
execute command
|
|
||||||
endfor
|
|
||||||
return ''
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" Section: Unofficial
|
|
||||||
|
|
||||||
function! pathogen#is_absolute(path) abort
|
|
||||||
return a:path =~# (has('win32') ? '^\%([\\/]\|\w:\)[\\/]\|^[~$]' : '^[/~$]')
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" Given a string, returns all possible permutations of comma delimited braced
|
|
||||||
" alternatives of that string. pathogen#expand('/{a,b}/{c,d}') yields
|
|
||||||
" ['/a/c', '/a/d', '/b/c', '/b/d']. Empty braces are treated as a wildcard
|
|
||||||
" and globbed. Actual globs are preserved.
|
|
||||||
function! pathogen#expand(pattern) abort
|
|
||||||
if a:pattern =~# '{[^{}]\+}'
|
|
||||||
let [pre, pat, post] = split(substitute(a:pattern, '\(.\{-\}\){\([^{}]\+\)}\(.*\)', "\\1\001\\2\001\\3", ''), "\001", 1)
|
|
||||||
let found = map(split(pat, ',', 1), 'pre.v:val.post')
|
|
||||||
let results = []
|
|
||||||
for pattern in found
|
|
||||||
call extend(results, pathogen#expand(pattern))
|
|
||||||
endfor
|
|
||||||
return results
|
|
||||||
elseif a:pattern =~# '{}'
|
|
||||||
let pat = matchstr(a:pattern, '^.*{}[^*]*\%($\|[\\/]\)')
|
|
||||||
let post = a:pattern[strlen(pat) : -1]
|
|
||||||
return map(split(glob(substitute(pat, '{}', '*', 'g')), "\n"), 'v:val.post')
|
|
||||||
else
|
|
||||||
return [a:pattern]
|
|
||||||
endif
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" \ on Windows unless shellslash is set, / everywhere else.
|
|
||||||
function! pathogen#slash() abort
|
|
||||||
return !exists("+shellslash") || &shellslash ? '/' : '\'
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
function! pathogen#separator() abort
|
|
||||||
return pathogen#slash()
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" Convenience wrapper around glob() which returns a list.
|
|
||||||
function! pathogen#glob(pattern) abort
|
|
||||||
let files = split(glob(a:pattern),"\n")
|
|
||||||
return map(files,'substitute(v:val,"[".pathogen#slash()."/]$","","")')
|
|
||||||
endfunction "}}}1
|
|
||||||
|
|
||||||
" Like pathogen#glob(), only limit the results to directories.
|
|
||||||
function! pathogen#glob_directories(pattern) abort
|
|
||||||
return filter(pathogen#glob(a:pattern),'isdirectory(v:val)')
|
|
||||||
endfunction "}}}1
|
|
||||||
|
|
||||||
" Remove duplicates from a list.
|
|
||||||
function! pathogen#uniq(list) abort
|
|
||||||
let i = 0
|
|
||||||
let seen = {}
|
|
||||||
while i < len(a:list)
|
|
||||||
if (a:list[i] ==# '' && exists('empty')) || has_key(seen,a:list[i])
|
|
||||||
call remove(a:list,i)
|
|
||||||
elseif a:list[i] ==# ''
|
|
||||||
let i += 1
|
|
||||||
let empty = 1
|
|
||||||
else
|
|
||||||
let seen[a:list[i]] = 1
|
|
||||||
let i += 1
|
|
||||||
endif
|
|
||||||
endwhile
|
|
||||||
return a:list
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" Backport of fnameescape().
|
|
||||||
function! pathogen#fnameescape(string) abort
|
|
||||||
if exists('*fnameescape')
|
|
||||||
return fnameescape(a:string)
|
|
||||||
elseif a:string ==# '-'
|
|
||||||
return '\-'
|
|
||||||
else
|
|
||||||
return substitute(escape(a:string," \t\n*?[{`$\\%#'\"|!<"),'^[+>]','\\&','')
|
|
||||||
endif
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" Like findfile(), but hardcoded to use the runtimepath.
|
|
||||||
function! pathogen#runtime_findfile(file,count) abort "{{{1
|
|
||||||
let rtp = pathogen#join(1,pathogen#split(&rtp))
|
|
||||||
let file = findfile(a:file,rtp,a:count)
|
|
||||||
if file ==# ''
|
|
||||||
return ''
|
|
||||||
else
|
|
||||||
return fnamemodify(file,':p')
|
|
||||||
endif
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" Section: Deprecated
|
|
||||||
|
|
||||||
function! s:warn(msg) abort
|
|
||||||
echohl WarningMsg
|
|
||||||
echomsg a:msg
|
|
||||||
echohl NONE
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" Prepend all subdirectories of path to the rtp, and append all 'after'
|
|
||||||
" directories in those subdirectories. Deprecated.
|
|
||||||
function! pathogen#runtime_prepend_subdirectories(path) abort
|
|
||||||
call s:warn('Change pathogen#runtime_prepend_subdirectories('.string(a:path).') to pathogen#infect('.string(a:path.'/{}').')')
|
|
||||||
return pathogen#surround(a:path . pathogen#slash() . '{}')
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
function! pathogen#incubate(...) abort
|
|
||||||
let name = a:0 ? a:1 : 'bundle/{}'
|
|
||||||
call s:warn('Change pathogen#incubate('.(a:0 ? string(a:1) : '').') to pathogen#infect('.string(name).')')
|
|
||||||
return pathogen#interpose(name)
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
" Deprecated alias for pathogen#interpose().
|
|
||||||
function! pathogen#runtime_append_all_bundles(...) abort
|
|
||||||
if a:0
|
|
||||||
call s:warn('Change pathogen#runtime_append_all_bundles('.string(a:1).') to pathogen#infect('.string(a:1.'/{}').')')
|
|
||||||
else
|
|
||||||
call s:warn('Change pathogen#runtime_append_all_bundles() to pathogen#infect()')
|
|
||||||
endif
|
|
||||||
return pathogen#interpose(a:0 ? a:1 . '/{}' : 'bundle/{}')
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
if exists(':Vedit')
|
|
||||||
finish
|
|
||||||
endif
|
|
||||||
|
|
||||||
let s:vopen_warning = 0
|
|
||||||
|
|
||||||
function! s:find(count,cmd,file,lcd)
|
|
||||||
let rtp = pathogen#join(1,pathogen#split(&runtimepath))
|
|
||||||
let file = pathogen#runtime_findfile(a:file,a:count)
|
|
||||||
if file ==# ''
|
|
||||||
return "echoerr 'E345: Can''t find file \"".a:file."\" in runtimepath'"
|
|
||||||
endif
|
|
||||||
if !s:vopen_warning
|
|
||||||
let s:vopen_warning = 1
|
|
||||||
let warning = '|echohl WarningMsg|echo "Install scriptease.vim to continue using :V'.a:cmd.'"|echohl NONE'
|
|
||||||
else
|
|
||||||
let warning = ''
|
|
||||||
endif
|
|
||||||
if a:lcd
|
|
||||||
let path = file[0:-strlen(a:file)-2]
|
|
||||||
execute 'lcd `=path`'
|
|
||||||
return a:cmd.' '.pathogen#fnameescape(a:file) . warning
|
|
||||||
else
|
|
||||||
return a:cmd.' '.pathogen#fnameescape(file) . warning
|
|
||||||
endif
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
function! s:Findcomplete(A,L,P)
|
|
||||||
let sep = pathogen#slash()
|
|
||||||
let cheats = {
|
|
||||||
\'a': 'autoload',
|
|
||||||
\'d': 'doc',
|
|
||||||
\'f': 'ftplugin',
|
|
||||||
\'i': 'indent',
|
|
||||||
\'p': 'plugin',
|
|
||||||
\'s': 'syntax'}
|
|
||||||
if a:A =~# '^\w[\\/]' && has_key(cheats,a:A[0])
|
|
||||||
let request = cheats[a:A[0]].a:A[1:-1]
|
|
||||||
else
|
|
||||||
let request = a:A
|
|
||||||
endif
|
|
||||||
let pattern = substitute(request,'/\|\'.sep,'*'.sep,'g').'*'
|
|
||||||
let found = {}
|
|
||||||
for path in pathogen#split(&runtimepath)
|
|
||||||
let path = expand(path, ':p')
|
|
||||||
let matches = split(glob(path.sep.pattern),"\n")
|
|
||||||
call map(matches,'isdirectory(v:val) ? v:val.sep : v:val')
|
|
||||||
call map(matches,'expand(v:val, ":p")[strlen(path)+1:-1]')
|
|
||||||
for match in matches
|
|
||||||
let found[match] = 1
|
|
||||||
endfor
|
|
||||||
endfor
|
|
||||||
return sort(keys(found))
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Ve :execute s:find(<count>,'edit<bang>',<q-args>,0)
|
|
||||||
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vedit :execute s:find(<count>,'edit<bang>',<q-args>,0)
|
|
||||||
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vopen :execute s:find(<count>,'edit<bang>',<q-args>,1)
|
|
||||||
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vsplit :execute s:find(<count>,'split',<q-args>,<bang>1)
|
|
||||||
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vvsplit :execute s:find(<count>,'vsplit',<q-args>,<bang>1)
|
|
||||||
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vtabedit :execute s:find(<count>,'tabedit',<q-args>,<bang>1)
|
|
||||||
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vpedit :execute s:find(<count>,'pedit',<q-args>,<bang>1)
|
|
||||||
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vread :execute s:find(<count>,'read',<q-args>,<bang>1)
|
|
||||||
|
|
||||||
" vim:set et sw=2 foldmethod=expr foldexpr=getline(v\:lnum)=~'^\"\ Section\:'?'>1'\:getline(v\:lnum)=~#'^fu'?'a1'\:getline(v\:lnum)=~#'^endf'?'s1'\:'=':
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit f20c69321d5152662f86f8903af258e22a64823d
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 061c5c756713f42b92b6b69b0a081075319a60d0
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 0b44415a3302030b56755cc1135ca9ca57dc1ada
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 23d5199f0eaee036186f3df8a87ec356905c6a32
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 502c96d61919dd784f0f7214ca69c31286fa11eb
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 566fa060a852a92758bdf1a0a1752ed74e16cbd1
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit f5a75d075d3c005ebe69e3f5e56cf99516e8aa3b
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 630169bfc21bf5a114616238810e4b31b19eb983
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 7b36c46d17d57db34fdb0adac9ba6382d0bb5e66
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 53041fbc45398a9af631a20657e109707a455339
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 14d14cf951c08fc88ca6c3e6f28fe47b99421e23
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit a9a3b7384657bc1f60a963fd6c08c63fc48d61c3
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 32fe889b8cafd3a4921ef8e6485156453ff58c42
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 528a59f26d12278698bb946f8fb82a63711eec21
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit dba8a0705d95cda76d599bb7d09964d67741a5c5
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit b18e23cdfa082dee7da8a2466db5a66907491e5b
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 580441e583502c42d28a2001aa3206250913879e
|
|
|
@ -1,101 +0,0 @@
|
||||||
" Vim color file - mmk2410
|
|
||||||
" Generated by http://bytefluent.com/vivify 2015-09-18
|
|
||||||
set background=dark
|
|
||||||
if version > 580
|
|
||||||
hi clear
|
|
||||||
if exists("syntax_on")
|
|
||||||
syntax reset
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
set t_Co=256
|
|
||||||
let g:colors_name = "mmk2410"
|
|
||||||
|
|
||||||
"hi CTagsMember -- no settings --
|
|
||||||
"hi CTagsGlobalConstant -- no settings --
|
|
||||||
"hi Ignore -- no settings --
|
|
||||||
hi Normal guifg=#f2f2f2 guibg=#0a0f0f guisp=#0a0f0f gui=NONE ctermfg=255 ctermbg=233 cterm=NONE
|
|
||||||
"hi CTagsImport -- no settings --
|
|
||||||
"hi CTagsGlobalVariable -- no settings --
|
|
||||||
"hi EnumerationValue -- no settings --
|
|
||||||
"hi Union -- no settings --
|
|
||||||
"hi Question -- no settings --
|
|
||||||
"hi EnumerationName -- no settings --
|
|
||||||
"hi DefinedName -- no settings --
|
|
||||||
"hi LocalVariable -- no settings --
|
|
||||||
"hi CTagsClass -- no settings --
|
|
||||||
"hi clear -- no settings --
|
|
||||||
hi IncSearch guifg=#192224 guibg=#00c700 guisp=#00c700 gui=NONE ctermfg=235 ctermbg=40 cterm=NONE
|
|
||||||
hi WildMenu guifg=NONE guibg=#A1A6A8 guisp=#A1A6A8 gui=NONE ctermfg=NONE ctermbg=248 cterm=NONE
|
|
||||||
hi SignColumn guifg=#192224 guibg=#536991 guisp=#536991 gui=NONE ctermfg=235 ctermbg=60 cterm=NONE
|
|
||||||
hi SpecialComment guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
|
||||||
hi Typedef guifg=#536991 guibg=NONE guisp=NONE gui=bold ctermfg=60 ctermbg=NONE cterm=bold
|
|
||||||
hi Title guifg=#f5f5ff guibg=#292929 guisp=#292929 gui=bold,italic ctermfg=189 ctermbg=235 cterm=bold
|
|
||||||
hi Folded guifg=#192224 guibg=#A1A6A8 guisp=#A1A6A8 gui=italic ctermfg=235 ctermbg=248 cterm=NONE
|
|
||||||
hi PreCondit guifg=#f20372 guibg=NONE guisp=NONE gui=NONE ctermfg=198 ctermbg=NONE cterm=NONE
|
|
||||||
hi Include guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
|
||||||
hi Float guifg=#A1A6A8 guibg=NONE guisp=NONE gui=NONE ctermfg=248 ctermbg=NONE cterm=NONE
|
|
||||||
hi StatusLineNC guifg=#cccccc guibg=#127894 guisp=#127894 gui=bold ctermfg=252 ctermbg=24 cterm=bold
|
|
||||||
hi NonText guifg=#5E6C70 guibg=NONE guisp=NONE gui=italic ctermfg=66 ctermbg=NONE cterm=NONE
|
|
||||||
hi DiffText guifg=NONE guibg=#a33b42 guisp=#a33b42 gui=NONE ctermfg=NONE ctermbg=131 cterm=NONE
|
|
||||||
hi ErrorMsg guifg=#ffffff guibg=#e81919 guisp=#e81919 gui=NONE ctermfg=15 ctermbg=160 cterm=NONE
|
|
||||||
hi Debug guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
|
||||||
hi PMenuSbar guifg=NONE guibg=#193138 guisp=#193138 gui=NONE ctermfg=NONE ctermbg=237 cterm=NONE
|
|
||||||
hi Identifier guifg=#47afff guibg=NONE guisp=NONE gui=NONE ctermfg=75 ctermbg=NONE cterm=NONE
|
|
||||||
hi SpecialChar guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
|
||||||
hi Conditional guifg=#f20372 guibg=NONE guisp=NONE gui=bold ctermfg=198 ctermbg=NONE cterm=bold
|
|
||||||
hi StorageClass guifg=#536991 guibg=NONE guisp=NONE gui=bold ctermfg=60 ctermbg=NONE cterm=bold
|
|
||||||
hi Todo guifg=#ffffff guibg=#bd0000 guisp=#bd0000 gui=NONE ctermfg=15 ctermbg=1 cterm=NONE
|
|
||||||
hi Special guifg=#cc00ff guibg=NONE guisp=NONE gui=NONE ctermfg=165 ctermbg=NONE cterm=NONE
|
|
||||||
hi LineNr guifg=#666666 guibg=NONE guisp=NONE gui=NONE ctermfg=241 ctermbg=NONE cterm=NONE
|
|
||||||
hi StatusLine guifg=#d4d4d4 guibg=#ad3434 guisp=#ad3434 gui=bold ctermfg=188 ctermbg=131 cterm=bold
|
|
||||||
hi Label guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold
|
|
||||||
hi PMenuSel guifg=#1c1c1c guibg=#c700b0 guisp=#c700b0 gui=NONE ctermfg=234 ctermbg=5 cterm=NONE
|
|
||||||
hi Search guifg=#192224 guibg=#55bd00 guisp=#55bd00 gui=NONE ctermfg=235 ctermbg=70 cterm=NONE
|
|
||||||
hi Delimiter guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
|
||||||
hi Statement guifg=#f20372 guibg=NONE guisp=NONE gui=bold ctermfg=198 ctermbg=NONE cterm=bold
|
|
||||||
hi SpellRare guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline
|
|
||||||
hi Comment guifg=#5c5c5c guibg=NONE guisp=NONE gui=italic ctermfg=59 ctermbg=NONE cterm=NONE
|
|
||||||
hi Character guifg=#A1A6A8 guibg=NONE guisp=NONE gui=NONE ctermfg=248 ctermbg=NONE cterm=NONE
|
|
||||||
hi TabLineSel guifg=#d6d6d6 guibg=#1e73bd guisp=#1e73bd gui=bold ctermfg=188 ctermbg=4 cterm=bold
|
|
||||||
hi Number guifg=#A1A6A8 guibg=NONE guisp=NONE gui=NONE ctermfg=248 ctermbg=NONE cterm=NONE
|
|
||||||
hi Boolean guifg=#A1A6A8 guibg=NONE guisp=NONE gui=NONE ctermfg=248 ctermbg=NONE cterm=NONE
|
|
||||||
hi Operator guifg=#d91a1a guibg=NONE guisp=NONE gui=bold ctermfg=160 ctermbg=NONE cterm=bold
|
|
||||||
hi CursorLine guifg=NONE guibg=#222E30 guisp=#222E30 gui=NONE ctermfg=NONE ctermbg=236 cterm=NONE
|
|
||||||
hi TabLineFill guifg=#192224 guibg=#127894 guisp=#127894 gui=bold ctermfg=235 ctermbg=24 cterm=bold
|
|
||||||
hi WarningMsg guifg=#A1A6A8 guibg=#912C00 guisp=#912C00 gui=NONE ctermfg=248 ctermbg=88 cterm=NONE
|
|
||||||
hi VisualNOS guifg=#192224 guibg=#F9F9FF guisp=#F9F9FF gui=underline ctermfg=235 ctermbg=189 cterm=underline
|
|
||||||
hi DiffDelete guifg=NONE guibg=#192224 guisp=#192224 gui=NONE ctermfg=NONE ctermbg=235 cterm=NONE
|
|
||||||
hi ModeMsg guifg=#F9F9F9 guibg=#192224 guisp=#192224 gui=bold ctermfg=15 ctermbg=235 cterm=bold
|
|
||||||
hi CursorColumn guifg=NONE guibg=#222E30 guisp=#222E30 gui=NONE ctermfg=NONE ctermbg=236 cterm=NONE
|
|
||||||
hi Define guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
|
||||||
hi Function guifg=#48c750 guibg=NONE guisp=NONE gui=bold ctermfg=77 ctermbg=NONE cterm=bold
|
|
||||||
hi FoldColumn guifg=#192224 guibg=#A1A6A8 guisp=#A1A6A8 gui=italic ctermfg=235 ctermbg=248 cterm=NONE
|
|
||||||
hi PreProc guifg=#47afff guibg=NONE guisp=NONE gui=NONE ctermfg=75 ctermbg=NONE cterm=NONE
|
|
||||||
hi Visual guifg=#192224 guibg=#F9F9FF guisp=#F9F9FF gui=NONE ctermfg=235 ctermbg=189 cterm=NONE
|
|
||||||
hi MoreMsg guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold
|
|
||||||
hi SpellCap guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline
|
|
||||||
hi VertSplit guifg=#192224 guibg=#5E6C70 guisp=#5E6C70 gui=bold ctermfg=235 ctermbg=66 cterm=bold
|
|
||||||
hi Exception guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold
|
|
||||||
hi Keyword guifg=#ff6600 guibg=NONE guisp=NONE gui=bold ctermfg=202 ctermbg=NONE cterm=bold
|
|
||||||
hi Type guifg=#47e6c6 guibg=NONE guisp=NONE gui=bold ctermfg=79 ctermbg=NONE cterm=bold
|
|
||||||
hi DiffChange guifg=NONE guibg=#a33b42 guisp=#a33b42 gui=NONE ctermfg=NONE ctermbg=131 cterm=NONE
|
|
||||||
hi Cursor guifg=#192224 guibg=#F9F9F9 guisp=#F9F9F9 gui=NONE ctermfg=235 ctermbg=15 cterm=NONE
|
|
||||||
hi SpellLocal guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline
|
|
||||||
hi Error guifg=#A1A6A8 guibg=#912C00 guisp=#912C00 gui=NONE ctermfg=248 ctermbg=88 cterm=NONE
|
|
||||||
hi PMenu guifg=#969696 guibg=#193138 guisp=#193138 gui=NONE ctermfg=246 ctermbg=237 cterm=NONE
|
|
||||||
hi SpecialKey guifg=#5E6C70 guibg=NONE guisp=NONE gui=italic ctermfg=66 ctermbg=NONE cterm=NONE
|
|
||||||
hi Constant guifg=#ff0073 guibg=NONE guisp=NONE gui=NONE ctermfg=197 ctermbg=NONE cterm=NONE
|
|
||||||
hi Tag guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
|
||||||
hi String guifg=#bdc6c9 guibg=NONE guisp=NONE gui=NONE ctermfg=251 ctermbg=NONE cterm=NONE
|
|
||||||
hi PMenuThumb guifg=NONE guibg=#a4a6a8 guisp=#a4a6a8 gui=NONE ctermfg=NONE ctermbg=248 cterm=NONE
|
|
||||||
hi MatchParen guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold
|
|
||||||
hi Repeat guifg=#BD9800 guibg=NONE guisp=NONE gui=bold ctermfg=1 ctermbg=NONE cterm=bold
|
|
||||||
hi SpellBad guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline
|
|
||||||
hi Directory guifg=#536991 guibg=NONE guisp=NONE gui=bold ctermfg=60 ctermbg=NONE cterm=bold
|
|
||||||
hi Structure guifg=#536991 guibg=NONE guisp=NONE gui=bold ctermfg=60 ctermbg=NONE cterm=bold
|
|
||||||
hi Macro guifg=#BD9800 guibg=NONE guisp=NONE gui=NONE ctermfg=1 ctermbg=NONE cterm=NONE
|
|
||||||
hi Underlined guifg=#F9F9FF guibg=#192224 guisp=#192224 gui=underline ctermfg=189 ctermbg=235 cterm=underline
|
|
||||||
hi DiffAdd guifg=NONE guibg=#193224 guisp=#193224 gui=NONE ctermfg=NONE ctermbg=236 cterm=NONE
|
|
||||||
hi TabLine guifg=#d6d6d6 guibg=#2b6599 guisp=#2b6599 gui=bold ctermfg=188 ctermbg=24 cterm=bold
|
|
||||||
hi cursorim guifg=#192224 guibg=#536991 guisp=#536991 gui=NONE ctermfg=235 ctermbg=60 cterm=NONE
|
|
|
@ -1,108 +0,0 @@
|
||||||
" Vim color file
|
|
||||||
" Converted from Textmate theme Monokai using Coloration v0.3.2 (http://github.com/sickill/coloration)
|
|
||||||
|
|
||||||
set background=dark
|
|
||||||
highlight clear
|
|
||||||
|
|
||||||
if exists("syntax_on")
|
|
||||||
syntax reset
|
|
||||||
endif
|
|
||||||
|
|
||||||
set t_Co=256
|
|
||||||
let g:colors_name = "monokai"
|
|
||||||
|
|
||||||
hi Cursor ctermfg=235 ctermbg=231 cterm=NONE guifg=#272822 guibg=#f8f8f0 gui=NONE
|
|
||||||
hi Visual ctermfg=NONE ctermbg=59 cterm=NONE guifg=NONE guibg=#49483e gui=NONE
|
|
||||||
hi CursorLine ctermfg=NONE ctermbg=237 cterm=NONE guifg=NONE guibg=#3c3d37 gui=NONE
|
|
||||||
hi CursorColumn ctermfg=NONE ctermbg=237 cterm=NONE guifg=NONE guibg=#3c3d37 gui=NONE
|
|
||||||
hi ColorColumn ctermfg=NONE ctermbg=237 cterm=NONE guifg=NONE guibg=#3c3d37 gui=NONE
|
|
||||||
hi LineNr ctermfg=102 ctermbg=237 cterm=NONE guifg=#90908a guibg=#3c3d37 gui=NONE
|
|
||||||
hi VertSplit ctermfg=241 ctermbg=241 cterm=NONE guifg=#64645e guibg=#64645e gui=NONE
|
|
||||||
hi MatchParen ctermfg=197 ctermbg=NONE cterm=underline guifg=#f92672 guibg=NONE gui=underline
|
|
||||||
hi StatusLine ctermfg=231 ctermbg=241 cterm=bold guifg=#f8f8f2 guibg=#64645e gui=bold
|
|
||||||
hi StatusLineNC ctermfg=231 ctermbg=241 cterm=NONE guifg=#f8f8f2 guibg=#64645e gui=NONE
|
|
||||||
hi Pmenu ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi PmenuSel ctermfg=NONE ctermbg=59 cterm=NONE guifg=NONE guibg=#49483e gui=NONE
|
|
||||||
hi IncSearch ctermfg=235 ctermbg=186 cterm=NONE guifg=#272822 guibg=#e6db74 gui=NONE
|
|
||||||
hi Search ctermfg=NONE ctermbg=NONE cterm=underline guifg=NONE guibg=NONE gui=underline
|
|
||||||
hi Directory ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
|
||||||
hi Folded ctermfg=242 ctermbg=235 cterm=NONE guifg=#75715e guibg=#272822 gui=NONE
|
|
||||||
hi SignColumn ctermfg=NONE ctermbg=237 cterm=NONE guifg=NONE guibg=#3c3d37 gui=NONE
|
|
||||||
hi Normal ctermfg=231 ctermbg=235 cterm=NONE guifg=#f8f8f2 guibg=#272822 gui=NONE
|
|
||||||
hi Boolean ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
|
||||||
hi Character ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
|
||||||
hi Comment ctermfg=242 ctermbg=NONE cterm=NONE guifg=#75715e guibg=NONE gui=NONE
|
|
||||||
hi Conditional ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi Constant ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi Define ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi DiffAdd ctermfg=231 ctermbg=64 cterm=bold guifg=#f8f8f2 guibg=#46830c gui=bold
|
|
||||||
hi DiffDelete ctermfg=88 ctermbg=NONE cterm=NONE guifg=#8b0807 guibg=NONE gui=NONE
|
|
||||||
hi DiffChange ctermfg=NONE ctermbg=NONE cterm=NONE guifg=#f8f8f2 guibg=#243955 gui=NONE
|
|
||||||
hi DiffText ctermfg=231 ctermbg=24 cterm=bold guifg=#f8f8f2 guibg=#204a87 gui=bold
|
|
||||||
hi ErrorMsg ctermfg=231 ctermbg=197 cterm=NONE guifg=#f8f8f0 guibg=#f92672 gui=NONE
|
|
||||||
hi WarningMsg ctermfg=231 ctermbg=197 cterm=NONE guifg=#f8f8f0 guibg=#f92672 gui=NONE
|
|
||||||
hi Float ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
|
||||||
hi Function ctermfg=148 ctermbg=NONE cterm=NONE guifg=#a6e22e guibg=NONE gui=NONE
|
|
||||||
hi Identifier ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic
|
|
||||||
hi Keyword ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi Label ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE
|
|
||||||
hi NonText ctermfg=59 ctermbg=236 cterm=NONE guifg=#49483e guibg=#31322c gui=NONE
|
|
||||||
hi Number ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
|
||||||
hi Operator ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi PreProc ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi Special ctermfg=231 ctermbg=NONE cterm=NONE guifg=#f8f8f2 guibg=NONE gui=NONE
|
|
||||||
hi SpecialKey ctermfg=59 ctermbg=237 cterm=NONE guifg=#49483e guibg=#3c3d37 gui=NONE
|
|
||||||
hi Statement ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi StorageClass ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic
|
|
||||||
hi String ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE
|
|
||||||
hi Tag ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi Title ctermfg=231 ctermbg=NONE cterm=bold guifg=#f8f8f2 guibg=NONE gui=bold
|
|
||||||
hi Todo ctermfg=95 ctermbg=NONE cterm=inverse,bold guifg=#75715e guibg=NONE gui=inverse,bold
|
|
||||||
hi Type ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi Underlined ctermfg=NONE ctermbg=NONE cterm=underline guifg=NONE guibg=NONE gui=underline
|
|
||||||
hi rubyClass ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi rubyFunction ctermfg=148 ctermbg=NONE cterm=NONE guifg=#a6e22e guibg=NONE gui=NONE
|
|
||||||
hi rubyInterpolationDelimiter ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi rubySymbol ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
|
||||||
hi rubyConstant ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic
|
|
||||||
hi rubyStringDelimiter ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE
|
|
||||||
hi rubyBlockParameter ctermfg=208 ctermbg=NONE cterm=NONE guifg=#fd971f guibg=NONE gui=italic
|
|
||||||
hi rubyInstanceVariable ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi rubyInclude ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi rubyGlobalVariable ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi rubyRegexp ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE
|
|
||||||
hi rubyRegexpDelimiter ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE
|
|
||||||
hi rubyEscape ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
|
||||||
hi rubyControl ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi rubyClassVariable ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi rubyOperator ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi rubyException ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi rubyPseudoVariable ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi rubyRailsUserClass ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic
|
|
||||||
hi rubyRailsARAssociationMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
|
||||||
hi rubyRailsARMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
|
||||||
hi rubyRailsRenderMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
|
||||||
hi rubyRailsMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
|
||||||
hi erubyDelimiter ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi erubyComment ctermfg=95 ctermbg=NONE cterm=NONE guifg=#75715e guibg=NONE gui=NONE
|
|
||||||
hi erubyRailsMethod ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
|
||||||
hi htmlTag ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi htmlEndTag ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi htmlTagName ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi htmlArg ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi htmlSpecialChar ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
|
||||||
hi javaScriptFunction ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=italic
|
|
||||||
hi javaScriptRailsFunction ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
|
||||||
hi javaScriptBraces ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi yamlKey ctermfg=197 ctermbg=NONE cterm=NONE guifg=#f92672 guibg=NONE gui=NONE
|
|
||||||
hi yamlAnchor ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi yamlAlias ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
||||||
hi yamlDocumentHeader ctermfg=186 ctermbg=NONE cterm=NONE guifg=#e6db74 guibg=NONE gui=NONE
|
|
||||||
hi cssURL ctermfg=208 ctermbg=NONE cterm=NONE guifg=#fd971f guibg=NONE gui=italic
|
|
||||||
hi cssFunctionName ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
|
||||||
hi cssColor ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
|
||||||
hi cssPseudoClassId ctermfg=148 ctermbg=NONE cterm=NONE guifg=#a6e22e guibg=NONE gui=NONE
|
|
||||||
hi cssClassName ctermfg=148 ctermbg=NONE cterm=NONE guifg=#a6e22e guibg=NONE gui=NONE
|
|
||||||
hi cssValueLength ctermfg=141 ctermbg=NONE cterm=NONE guifg=#ae81ff guibg=NONE gui=NONE
|
|
||||||
hi cssCommonAttr ctermfg=81 ctermbg=NONE cterm=NONE guifg=#66d9ef guibg=NONE gui=NONE
|
|
||||||
hi cssBraces ctermfg=NONE ctermbg=NONE cterm=NONE guifg=NONE guibg=NONE gui=NONE
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/compiler/tex.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/doc/imaps.txt.gz
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/doc/latex-suite-quickstart.txt.gz
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/doc/latex-suite.txt.gz
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/doc/latexhelp.txt.gz
|
|
914
vim/doc/tags
914
vim/doc/tags
|
@ -1,914 +0,0 @@
|
||||||
Alph latexhelp.txt.gz /*Alph*
|
|
||||||
Alt-B latex-suite.txt.gz /*Alt-B*
|
|
||||||
Alt-C latex-suite.txt.gz /*Alt-C*
|
|
||||||
Alt-I latex-suite.txt.gz /*Alt-I*
|
|
||||||
Alt-L latex-suite.txt.gz /*Alt-L*
|
|
||||||
BibTeX latexhelp.txt.gz /*BibTeX*
|
|
||||||
IMAP_PutTextWithMovement latex-suite.txt.gz /*IMAP_PutTextWithMovement*
|
|
||||||
Imap_DeleteEmptyPlaceHolders latex-suite.txt.gz /*Imap_DeleteEmptyPlaceHolders*
|
|
||||||
Imap_FreezeImap latex-suite.txt.gz /*Imap_FreezeImap*
|
|
||||||
Imap_PlaceHolderEnd latex-suite.txt.gz /*Imap_PlaceHolderEnd*
|
|
||||||
Imap_PlaceHolderStart latex-suite.txt.gz /*Imap_PlaceHolderStart*
|
|
||||||
Imap_StickyPlaceHolders latex-suite.txt.gz /*Imap_StickyPlaceHolders*
|
|
||||||
Imap_UsePlaceHolders latex-suite.txt.gz /*Imap_UsePlaceHolders*
|
|
||||||
LaTeX latexhelp.txt.gz /*LaTeX*
|
|
||||||
Plug_IMAP_DeleteAndJumBack latex-suite.txt.gz /*Plug_IMAP_DeleteAndJumBack*
|
|
||||||
Plug_IMAP_DeleteAndJumpForward latex-suite.txt.gz /*Plug_IMAP_DeleteAndJumpForward*
|
|
||||||
Plug_IMAP_JumpBack latex-suite.txt.gz /*Plug_IMAP_JumpBack*
|
|
||||||
Plug_IMAP_JumpForward latex-suite.txt.gz /*Plug_IMAP_JumpForward*
|
|
||||||
Plug_Tex_InsertItemOnThisLine latex-suite.txt.gz /*Plug_Tex_InsertItemOnThisLine*
|
|
||||||
Plug_Tex_LeftRight latex-suite.txt.gz /*Plug_Tex_LeftRight*
|
|
||||||
Plug_Tex_MathBF latex-suite.txt.gz /*Plug_Tex_MathBF*
|
|
||||||
Plug_Tex_MathCal latex-suite.txt.gz /*Plug_Tex_MathCal*
|
|
||||||
Roman latexhelp.txt.gz /*Roman*
|
|
||||||
TClearCiteHist latex-suite.txt.gz /*TClearCiteHist*
|
|
||||||
TLook latex-suite.txt.gz /*TLook*
|
|
||||||
TLookAll latex-suite.txt.gz /*TLookAll*
|
|
||||||
TLookBib latex-suite.txt.gz /*TLookBib*
|
|
||||||
TMacro latex-suite.txt.gz /*TMacro*
|
|
||||||
TMacroDelete latex-suite.txt.gz /*TMacroDelete*
|
|
||||||
TMacroEdit latex-suite.txt.gz /*TMacroEdit*
|
|
||||||
TMacroNew latex-suite.txt.gz /*TMacroNew*
|
|
||||||
TPackage latex-suite.txt.gz /*TPackage*
|
|
||||||
TPackageUpdate latex-suite.txt.gz /*TPackageUpdate*
|
|
||||||
TPackageUpdateAll latex-suite.txt.gz /*TPackageUpdateAll*
|
|
||||||
TPartComp latex-suite.txt.gz /*TPartComp*
|
|
||||||
TPartView latex-suite.txt.gz /*TPartView*
|
|
||||||
TSection latex-suite.txt.gz /*TSection*
|
|
||||||
TSectionAdvanced latex-suite.txt.gz /*TSectionAdvanced*
|
|
||||||
TTemplate latex-suite.txt.gz /*TTemplate*
|
|
||||||
Tex_AutoFolding latex-suite.txt.gz /*Tex_AutoFolding*
|
|
||||||
Tex_BIBINPUTS latex-suite.txt.gz /*Tex_BIBINPUTS*
|
|
||||||
Tex_CatchVisMapErrors latex-suite.txt.gz /*Tex_CatchVisMapErrors*
|
|
||||||
Tex_Com_name latex-suite.txt.gz /*Tex_Com_name*
|
|
||||||
Tex_CompileRule_format latex-suite.txt.gz /*Tex_CompileRule_format*
|
|
||||||
Tex_Debug latex-suite.txt.gz /*Tex_Debug*
|
|
||||||
Tex_DefaultTargetFormat latex-suite.txt.gz /*Tex_DefaultTargetFormat*
|
|
||||||
Tex_Diacritics latex-suite.txt.gz /*Tex_Diacritics*
|
|
||||||
Tex_Env_name latex-suite.txt.gz /*Tex_Env_name*
|
|
||||||
Tex_EnvironmentMaps latex-suite.txt.gz /*Tex_EnvironmentMaps*
|
|
||||||
Tex_EnvironmentMenus latex-suite.txt.gz /*Tex_EnvironmentMenus*
|
|
||||||
Tex_ExplorerHeight latex-suite.txt.gz /*Tex_ExplorerHeight*
|
|
||||||
Tex_FoldedCommands latex-suite.txt.gz /*Tex_FoldedCommands*
|
|
||||||
Tex_FoldedEnvironments latex-suite.txt.gz /*Tex_FoldedEnvironments*
|
|
||||||
Tex_FoldedMisc latex-suite.txt.gz /*Tex_FoldedMisc*
|
|
||||||
Tex_FoldedSections latex-suite.txt.gz /*Tex_FoldedSections*
|
|
||||||
Tex_Folding latex-suite.txt.gz /*Tex_Folding*
|
|
||||||
Tex_FontMaps latex-suite.txt.gz /*Tex_FontMaps*
|
|
||||||
Tex_FontMenus latex-suite.txt.gz /*Tex_FontMenus*
|
|
||||||
Tex_GotoError latex-suite.txt.gz /*Tex_GotoError*
|
|
||||||
Tex_HotKeyMappings latex-suite.txt.gz /*Tex_HotKeyMappings*
|
|
||||||
Tex_IgnoreLevel latex-suite.txt.gz /*Tex_IgnoreLevel*
|
|
||||||
Tex_IgnoredWarnings latex-suite.txt.gz /*Tex_IgnoredWarnings*
|
|
||||||
Tex_ImageDir latex-suite.txt.gz /*Tex_ImageDir*
|
|
||||||
Tex_ItemStyle_environment latex-suite.txt.gz /*Tex_ItemStyle_environment*
|
|
||||||
Tex_Leader latex-suite.txt.gz /*Tex_Leader*
|
|
||||||
Tex_Leader2 latex-suite.txt.gz /*Tex_Leader2*
|
|
||||||
Tex_MainFileExpression latex-suite.txt.gz /*Tex_MainFileExpression*
|
|
||||||
Tex_MainMenuLocation latex-suite.txt.gz /*Tex_MainMenuLocation*
|
|
||||||
Tex_MathMenus latex-suite.txt.gz /*Tex_MathMenus*
|
|
||||||
Tex_Menus latex-suite.txt.gz /*Tex_Menus*
|
|
||||||
Tex_MultipleCompileFormats latex-suite.txt.gz /*Tex_MultipleCompileFormats*
|
|
||||||
Tex_NestElementMenus latex-suite.txt.gz /*Tex_NestElementMenus*
|
|
||||||
Tex_NestPackagesMenu latex-suite.txt.gz /*Tex_NestPackagesMenu*
|
|
||||||
Tex_PackagesMenu latex-suite.txt.gz /*Tex_PackagesMenu*
|
|
||||||
Tex_ProjectSourceFiles latex-suite.txt.gz /*Tex_ProjectSourceFiles*
|
|
||||||
Tex_PromptedCommands latex-suite.txt.gz /*Tex_PromptedCommands*
|
|
||||||
Tex_PromptedEnvironments latex-suite.txt.gz /*Tex_PromptedEnvironments*
|
|
||||||
Tex_RememberCiteSearch latex-suite.txt.gz /*Tex_RememberCiteSearch*
|
|
||||||
Tex_SectionMaps latex-suite.txt.gz /*Tex_SectionMaps*
|
|
||||||
Tex_SectionMenus latex-suite.txt.gz /*Tex_SectionMenus*
|
|
||||||
Tex_SmartKeyBS latex-suite.txt.gz /*Tex_SmartKeyBS*
|
|
||||||
Tex_SmartKeyQuote latex-suite.txt.gz /*Tex_SmartKeyQuote*
|
|
||||||
Tex_TEXINPUTS latex-suite.txt.gz /*Tex_TEXINPUTS*
|
|
||||||
Tex_UseMakefile latex-suite.txt.gz /*Tex_UseMakefile*
|
|
||||||
Tex_UseMenuWizard latex-suite.txt.gz /*Tex_UseMenuWizard*
|
|
||||||
Tex_UsePython latex-suite.txt.gz /*Tex_UsePython*
|
|
||||||
Tex_UseSimpleLabelSearch latex-suite.txt.gz /*Tex_UseSimpleLabelSearch*
|
|
||||||
Tex_UseUtfMenus latex-suite.txt.gz /*Tex_UseUtfMenus*
|
|
||||||
Tex_ViewRuleComplete_format latex-suite.txt.gz /*Tex_ViewRuleComplete_format*
|
|
||||||
Tex_ViewRule_format latex-suite.txt.gz /*Tex_ViewRule_format*
|
|
||||||
Tex_ViewerCwindowHeight latex-suite.txt.gz /*Tex_ViewerCwindowHeight*
|
|
||||||
Tex_ViewerPreviewHeight latex-suite.txt.gz /*Tex_ViewerPreviewHeight*
|
|
||||||
Tshortcuts latex-suite.txt.gz /*Tshortcuts*
|
|
||||||
\Alph latexhelp.txt.gz /*\\Alph*
|
|
||||||
\Huge latexhelp.txt.gz /*\\Huge*
|
|
||||||
\LARGE latexhelp.txt.gz /*\\LARGE*
|
|
||||||
\Large latexhelp.txt.gz /*\\Large*
|
|
||||||
\Roman latexhelp.txt.gz /*\\Roman*
|
|
||||||
\\ latexhelp.txt.gz /*\\\\*
|
|
||||||
\\\\ latexhelp.txt.gz /*\\\\\\\\*
|
|
||||||
\addcontentsline latexhelp.txt.gz /*\\addcontentsline*
|
|
||||||
\address latexhelp.txt.gz /*\\address*
|
|
||||||
\addtocontents latexhelp.txt.gz /*\\addtocontents*
|
|
||||||
\addtocounter latexhelp.txt.gz /*\\addtocounter*
|
|
||||||
\addtolength latexhelp.txt.gz /*\\addtolength*
|
|
||||||
\addvspace latexhelp.txt.gz /*\\addvspace*
|
|
||||||
\alph latexhelp.txt.gz /*\\alph*
|
|
||||||
\and latexhelp.txt.gz /*\\and*
|
|
||||||
\appendix latexhelp.txt.gz /*\\appendix*
|
|
||||||
\arabic latexhelp.txt.gz /*\\arabic*
|
|
||||||
\author latexhelp.txt.gz /*\\author*
|
|
||||||
\begin latexhelp.txt.gz /*\\begin*
|
|
||||||
\bfseries latexhelp.txt.gz /*\\bfseries*
|
|
||||||
\bibitem latexhelp.txt.gz /*\\bibitem*
|
|
||||||
\bibliography latexhelp.txt.gz /*\\bibliography*
|
|
||||||
\bibliographystyle latexhelp.txt.gz /*\\bibliographystyle*
|
|
||||||
\bigskip latexhelp.txt.gz /*\\bigskip*
|
|
||||||
\cc latexhelp.txt.gz /*\\cc*
|
|
||||||
\cdots latexhelp.txt.gz /*\\cdots*
|
|
||||||
\centering latexhelp.txt.gz /*\\centering*
|
|
||||||
\chapter latexhelp.txt.gz /*\\chapter*
|
|
||||||
\circle latexhelp.txt.gz /*\\circle*
|
|
||||||
\cite latexhelp.txt.gz /*\\cite*
|
|
||||||
\cleardoublepage latexhelp.txt.gz /*\\cleardoublepage*
|
|
||||||
\clearpage latexhelp.txt.gz /*\\clearpage*
|
|
||||||
\cline latexhelp.txt.gz /*\\cline*
|
|
||||||
\closing latexhelp.txt.gz /*\\closing*
|
|
||||||
\dashbox latexhelp.txt.gz /*\\dashbox*
|
|
||||||
\date latexhelp.txt.gz /*\\date*
|
|
||||||
\ddots latexhelp.txt.gz /*\\ddots*
|
|
||||||
\depth latexhelp.txt.gz /*\\depth*
|
|
||||||
\documentclass latexhelp.txt.gz /*\\documentclass*
|
|
||||||
\dotfill latexhelp.txt.gz /*\\dotfill*
|
|
||||||
\emph latexhelp.txt.gz /*\\emph*
|
|
||||||
\end latexhelp.txt.gz /*\\end*
|
|
||||||
\enlargethispage latexhelp.txt.gz /*\\enlargethispage*
|
|
||||||
\fbox latexhelp.txt.gz /*\\fbox*
|
|
||||||
\flushbottom latexhelp.txt.gz /*\\flushbottom*
|
|
||||||
\fnsymbol latexhelp.txt.gz /*\\fnsymbol*
|
|
||||||
\fontencoding latexhelp.txt.gz /*\\fontencoding*
|
|
||||||
\fontfamily latexhelp.txt.gz /*\\fontfamily*
|
|
||||||
\fontseries latexhelp.txt.gz /*\\fontseries*
|
|
||||||
\fontshape latexhelp.txt.gz /*\\fontshape*
|
|
||||||
\fontsize latexhelp.txt.gz /*\\fontsize*
|
|
||||||
\footnote latexhelp.txt.gz /*\\footnote*
|
|
||||||
\footnotemark latexhelp.txt.gz /*\\footnotemark*
|
|
||||||
\footnotesize latexhelp.txt.gz /*\\footnotesize*
|
|
||||||
\footnotetext latexhelp.txt.gz /*\\footnotetext*
|
|
||||||
\frac latexhelp.txt.gz /*\\frac*
|
|
||||||
\frame latexhelp.txt.gz /*\\frame*
|
|
||||||
\framebox latexhelp.txt.gz /*\\framebox*
|
|
||||||
\fussy latexhelp.txt.gz /*\\fussy*
|
|
||||||
\height latexhelp.txt.gz /*\\height*
|
|
||||||
\hfill latexhelp.txt.gz /*\\hfill*
|
|
||||||
\hline latexhelp.txt.gz /*\\hline*
|
|
||||||
\hrulefill latexhelp.txt.gz /*\\hrulefill*
|
|
||||||
\hspace latexhelp.txt.gz /*\\hspace*
|
|
||||||
\huge latexhelp.txt.gz /*\\huge*
|
|
||||||
\hyphenation latexhelp.txt.gz /*\\hyphenation*
|
|
||||||
\include latexhelp.txt.gz /*\\include*
|
|
||||||
\includeonly latexhelp.txt.gz /*\\includeonly*
|
|
||||||
\indent latexhelp.txt.gz /*\\indent*
|
|
||||||
\input latexhelp.txt.gz /*\\input*
|
|
||||||
\item latexhelp.txt.gz /*\\item*
|
|
||||||
\itshape latexhelp.txt.gz /*\\itshape*
|
|
||||||
\kill latexhelp.txt.gz /*\\kill*
|
|
||||||
\label latexhelp.txt.gz /*\\label*
|
|
||||||
\large latexhelp.txt.gz /*\\large*
|
|
||||||
\ldots latexhelp.txt.gz /*\\ldots*
|
|
||||||
\lefteqn latexhelp.txt.gz /*\\lefteqn*
|
|
||||||
\letter latexhelp.txt.gz /*\\letter*
|
|
||||||
\line latexhelp.txt.gz /*\\line*
|
|
||||||
\linebreak latexhelp.txt.gz /*\\linebreak*
|
|
||||||
\linethickness latexhelp.txt.gz /*\\linethickness*
|
|
||||||
\listoffigures latexhelp.txt.gz /*\\listoffigures*
|
|
||||||
\listoftables latexhelp.txt.gz /*\\listoftables*
|
|
||||||
\location latexhelp.txt.gz /*\\location*
|
|
||||||
\lrbox latexhelp.txt.gz /*\\lrbox*
|
|
||||||
\makebox latexhelp.txt.gz /*\\makebox*
|
|
||||||
\makelabels latexhelp.txt.gz /*\\makelabels*
|
|
||||||
\maketitle latexhelp.txt.gz /*\\maketitle*
|
|
||||||
\marginpar latexhelp.txt.gz /*\\marginpar*
|
|
||||||
\markboth latexhelp.txt.gz /*\\markboth*
|
|
||||||
\markright latexhelp.txt.gz /*\\markright*
|
|
||||||
\mathbf latexhelp.txt.gz /*\\mathbf*
|
|
||||||
\mathcal latexhelp.txt.gz /*\\mathcal*
|
|
||||||
\mathit latexhelp.txt.gz /*\\mathit*
|
|
||||||
\mathnormal latexhelp.txt.gz /*\\mathnormal*
|
|
||||||
\mathrm latexhelp.txt.gz /*\\mathrm*
|
|
||||||
\mathsf latexhelp.txt.gz /*\\mathsf*
|
|
||||||
\mathtt latexhelp.txt.gz /*\\mathtt*
|
|
||||||
\mathversion latexhelp.txt.gz /*\\mathversion*
|
|
||||||
\mbox latexhelp.txt.gz /*\\mbox*
|
|
||||||
\mdseries latexhelp.txt.gz /*\\mdseries*
|
|
||||||
\medskip latexhelp.txt.gz /*\\medskip*
|
|
||||||
\multicolumn latexhelp.txt.gz /*\\multicolumn*
|
|
||||||
\multiput latexhelp.txt.gz /*\\multiput*
|
|
||||||
\name latexhelp.txt.gz /*\\name*
|
|
||||||
\newcommand latexhelp.txt.gz /*\\newcommand*
|
|
||||||
\newcounter latexhelp.txt.gz /*\\newcounter*
|
|
||||||
\newenvironment latexhelp.txt.gz /*\\newenvironment*
|
|
||||||
\newfont latexhelp.txt.gz /*\\newfont*
|
|
||||||
\newlength latexhelp.txt.gz /*\\newlength*
|
|
||||||
\newline latexhelp.txt.gz /*\\newline*
|
|
||||||
\newpage latexhelp.txt.gz /*\\newpage*
|
|
||||||
\newsavebox latexhelp.txt.gz /*\\newsavebox*
|
|
||||||
\newtheorem latexhelp.txt.gz /*\\newtheorem*
|
|
||||||
\nocite latexhelp.txt.gz /*\\nocite*
|
|
||||||
\nofiles latexhelp.txt.gz /*\\nofiles*
|
|
||||||
\noindent latexhelp.txt.gz /*\\noindent*
|
|
||||||
\nolinebreak latexhelp.txt.gz /*\\nolinebreak*
|
|
||||||
\nonumber latexhelp.txt.gz /*\\nonumber*
|
|
||||||
\nopagebreak latexhelp.txt.gz /*\\nopagebreak*
|
|
||||||
\normalfont latexhelp.txt.gz /*\\normalfont*
|
|
||||||
\normalsize latexhelp.txt.gz /*\\normalsize*
|
|
||||||
\onecolumn latexhelp.txt.gz /*\\onecolumn*
|
|
||||||
\opening latexhelp.txt.gz /*\\opening*
|
|
||||||
\oval latexhelp.txt.gz /*\\oval*
|
|
||||||
\overbrace latexhelp.txt.gz /*\\overbrace*
|
|
||||||
\overline latexhelp.txt.gz /*\\overline*
|
|
||||||
\pagebreak latexhelp.txt.gz /*\\pagebreak*
|
|
||||||
\pagenumbering latexhelp.txt.gz /*\\pagenumbering*
|
|
||||||
\pageref latexhelp.txt.gz /*\\pageref*
|
|
||||||
\pagestyle latexhelp.txt.gz /*\\pagestyle*
|
|
||||||
\par latexhelp.txt.gz /*\\par*
|
|
||||||
\paragraph latexhelp.txt.gz /*\\paragraph*
|
|
||||||
\parbox latexhelp.txt.gz /*\\parbox*
|
|
||||||
\part latexhelp.txt.gz /*\\part*
|
|
||||||
\picture-framebox latexhelp.txt.gz /*\\picture-framebox*
|
|
||||||
\ps latexhelp.txt.gz /*\\ps*
|
|
||||||
\pushtabs latexhelp.txt.gz /*\\pushtabs*
|
|
||||||
\put latexhelp.txt.gz /*\\put*
|
|
||||||
\raggedbottom latexhelp.txt.gz /*\\raggedbottom*
|
|
||||||
\raggedleft latexhelp.txt.gz /*\\raggedleft*
|
|
||||||
\raggedright latexhelp.txt.gz /*\\raggedright*
|
|
||||||
\raisebox latexhelp.txt.gz /*\\raisebox*
|
|
||||||
\ref latexhelp.txt.gz /*\\ref*
|
|
||||||
\refstepcounter latexhelp.txt.gz /*\\refstepcounter*
|
|
||||||
\renewcommand latexhelp.txt.gz /*\\renewcommand*
|
|
||||||
\renewenvironment latexhelp.txt.gz /*\\renewenvironment*
|
|
||||||
\reversemarginpar latexhelp.txt.gz /*\\reversemarginpar*
|
|
||||||
\rmfamily latexhelp.txt.gz /*\\rmfamily*
|
|
||||||
\roman latexhelp.txt.gz /*\\roman*
|
|
||||||
\rule latexhelp.txt.gz /*\\rule*
|
|
||||||
\savebox latexhelp.txt.gz /*\\savebox*
|
|
||||||
\sbox latexhelp.txt.gz /*\\sbox*
|
|
||||||
\scriptsize latexhelp.txt.gz /*\\scriptsize*
|
|
||||||
\scshape latexhelp.txt.gz /*\\scshape*
|
|
||||||
\section latexhelp.txt.gz /*\\section*
|
|
||||||
\selectfont latexhelp.txt.gz /*\\selectfont*
|
|
||||||
\setcounter latexhelp.txt.gz /*\\setcounter*
|
|
||||||
\setlength latexhelp.txt.gz /*\\setlength*
|
|
||||||
\settodepth latexhelp.txt.gz /*\\settodepth*
|
|
||||||
\settoheight latexhelp.txt.gz /*\\settoheight*
|
|
||||||
\settowidth latexhelp.txt.gz /*\\settowidth*
|
|
||||||
\sffamily latexhelp.txt.gz /*\\sffamily*
|
|
||||||
\shortstack latexhelp.txt.gz /*\\shortstack*
|
|
||||||
\signature latexhelp.txt.gz /*\\signature*
|
|
||||||
\sloppy latexhelp.txt.gz /*\\sloppy*
|
|
||||||
\slshape latexhelp.txt.gz /*\\slshape*
|
|
||||||
\small latexhelp.txt.gz /*\\small*
|
|
||||||
\smallskip latexhelp.txt.gz /*\\smallskip*
|
|
||||||
\space latexhelp.txt.gz /*\\space*
|
|
||||||
\sqrt latexhelp.txt.gz /*\\sqrt*
|
|
||||||
\startbreaks latexhelp.txt.gz /*\\startbreaks*
|
|
||||||
\stepcounter latexhelp.txt.gz /*\\stepcounter*
|
|
||||||
\stopbreaks latexhelp.txt.gz /*\\stopbreaks*
|
|
||||||
\subparagraph latexhelp.txt.gz /*\\subparagraph*
|
|
||||||
\subsection latexhelp.txt.gz /*\\subsection*
|
|
||||||
\subsubsection latexhelp.txt.gz /*\\subsubsection*
|
|
||||||
\symbol latexhelp.txt.gz /*\\symbol*
|
|
||||||
\table latexhelp.txt.gz /*\\table*
|
|
||||||
\tableofcontents latexhelp.txt.gz /*\\tableofcontents*
|
|
||||||
\telephone latexhelp.txt.gz /*\\telephone*
|
|
||||||
\textbf latexhelp.txt.gz /*\\textbf*
|
|
||||||
\textit latexhelp.txt.gz /*\\textit*
|
|
||||||
\textmd latexhelp.txt.gz /*\\textmd*
|
|
||||||
\textnormal latexhelp.txt.gz /*\\textnormal*
|
|
||||||
\textrm latexhelp.txt.gz /*\\textrm*
|
|
||||||
\textsc latexhelp.txt.gz /*\\textsc*
|
|
||||||
\textsf latexhelp.txt.gz /*\\textsf*
|
|
||||||
\textsl latexhelp.txt.gz /*\\textsl*
|
|
||||||
\texttt latexhelp.txt.gz /*\\texttt*
|
|
||||||
\textup latexhelp.txt.gz /*\\textup*
|
|
||||||
\thanks latexhelp.txt.gz /*\\thanks*
|
|
||||||
\thebibliography latexhelp.txt.gz /*\\thebibliography*
|
|
||||||
\thispagestyle latexhelp.txt.gz /*\\thispagestyle*
|
|
||||||
\tiny latexhelp.txt.gz /*\\tiny*
|
|
||||||
\title latexhelp.txt.gz /*\\title*
|
|
||||||
\totalheight latexhelp.txt.gz /*\\totalheight*
|
|
||||||
\ttfamily latexhelp.txt.gz /*\\ttfamily*
|
|
||||||
\twocolumn latexhelp.txt.gz /*\\twocolumn*
|
|
||||||
\typein latexhelp.txt.gz /*\\typein*
|
|
||||||
\typeout latexhelp.txt.gz /*\\typeout*
|
|
||||||
\underbrace latexhelp.txt.gz /*\\underbrace*
|
|
||||||
\underline latexhelp.txt.gz /*\\underline*
|
|
||||||
\upshape latexhelp.txt.gz /*\\upshape*
|
|
||||||
\usebox latexhelp.txt.gz /*\\usebox*
|
|
||||||
\usecounter latexhelp.txt.gz /*\\usecounter*
|
|
||||||
\usefont latexhelp.txt.gz /*\\usefont*
|
|
||||||
\usepackage latexhelp.txt.gz /*\\usepackage*
|
|
||||||
\value latexhelp.txt.gz /*\\value*
|
|
||||||
\vdots latexhelp.txt.gz /*\\vdots*
|
|
||||||
\vector latexhelp.txt.gz /*\\vector*
|
|
||||||
\verb latexhelp.txt.gz /*\\verb*
|
|
||||||
\vfill latexhelp.txt.gz /*\\vfill*
|
|
||||||
\vline latexhelp.txt.gz /*\\vline*
|
|
||||||
\vspace latexhelp.txt.gz /*\\vspace*
|
|
||||||
\width latexhelp.txt.gz /*\\width*
|
|
||||||
adding-bib-options latex-suite.txt.gz /*adding-bib-options*
|
|
||||||
alph latexhelp.txt.gz /*alph*
|
|
||||||
altkey-mappings latex-suite.txt.gz /*altkey-mappings*
|
|
||||||
arabic latexhelp.txt.gz /*arabic*
|
|
||||||
array latexhelp.txt.gz /*array*
|
|
||||||
article-class latexhelp.txt.gz /*article-class*
|
|
||||||
auc-tex-mappings latex-suite.txt.gz /*auc-tex-mappings*
|
|
||||||
automatic-package-detection latex-suite.txt.gz /*automatic-package-detection*
|
|
||||||
bibtex latexhelp.txt.gz /*bibtex*
|
|
||||||
bibtex-bindings latex-suite.txt.gz /*bibtex-bindings*
|
|
||||||
book-class latexhelp.txt.gz /*book-class*
|
|
||||||
center latexhelp.txt.gz /*center*
|
|
||||||
changing-commands latex-suite.txt.gz /*changing-commands*
|
|
||||||
changing-environments latex-suite.txt.gz /*changing-environments*
|
|
||||||
cite-search-caching latex-suite.txt.gz /*cite-search-caching*
|
|
||||||
compiler-dependency latex-suite.txt.gz /*compiler-dependency*
|
|
||||||
compiler-output-customization latex-suite.txt.gz /*compiler-output-customization*
|
|
||||||
compiler-rules latex-suite.txt.gz /*compiler-rules*
|
|
||||||
compiling-multiple latex-suite.txt.gz /*compiling-multiple*
|
|
||||||
completion-window-preferences latex-suite.txt.gz /*completion-window-preferences*
|
|
||||||
custom-macros-menu latex-suite.txt.gz /*custom-macros-menu*
|
|
||||||
custom-packages latex-suite.txt.gz /*custom-packages*
|
|
||||||
customize-alt-key-maps latex-suite.txt.gz /*customize-alt-key-maps*
|
|
||||||
customize-imap-maps latex-suite.txt.gz /*customize-imap-maps*
|
|
||||||
customizing-compiling latex-suite.txt.gz /*customizing-compiling*
|
|
||||||
customizing-folding latex-suite.txt.gz /*customizing-folding*
|
|
||||||
customizing-latex-completion latex-suite.txt.gz /*customizing-latex-completion*
|
|
||||||
customizing-latex-suite latex-suite.txt.gz /*customizing-latex-suite*
|
|
||||||
customizing-macros latex-suite.txt.gz /*customizing-macros*
|
|
||||||
customizing-menus latex-suite.txt.gz /*customizing-menus*
|
|
||||||
customizing-packages latex-suite.txt.gz /*customizing-packages*
|
|
||||||
customizing-place-holders latex-suite.txt.gz /*customizing-place-holders*
|
|
||||||
customizing-smart-keys latex-suite.txt.gz /*customizing-smart-keys*
|
|
||||||
customizing-viewing latex-suite.txt.gz /*customizing-viewing*
|
|
||||||
customizing-what-to-fold latex-suite.txt.gz /*customizing-what-to-fold*
|
|
||||||
default-folding latex-suite.txt.gz /*default-folding*
|
|
||||||
description latexhelp.txt.gz /*description*
|
|
||||||
diacritic-mappings latex-suite.txt.gz /*diacritic-mappings*
|
|
||||||
displaymath latexhelp.txt.gz /*displaymath*
|
|
||||||
draft latexhelp.txt.gz /*draft*
|
|
||||||
editing-folding latex-suite.txt.gz /*editing-folding*
|
|
||||||
empty latexhelp.txt.gz /*empty*
|
|
||||||
enabling-searching latex-suite.txt.gz /*enabling-searching*
|
|
||||||
enclosing-commands latex-suite.txt.gz /*enclosing-commands*
|
|
||||||
enclosing-env-f5 latex-suite.txt.gz /*enclosing-env-f5*
|
|
||||||
enclosing-env-threeletter latex-suite.txt.gz /*enclosing-env-threeletter*
|
|
||||||
enclosing-environments latex-suite.txt.gz /*enclosing-environments*
|
|
||||||
enumerate latexhelp.txt.gz /*enumerate*
|
|
||||||
environment-mappings latex-suite.txt.gz /*environment-mappings*
|
|
||||||
eqnarray latexhelp.txt.gz /*eqnarray*
|
|
||||||
equation latexhelp.txt.gz /*equation*
|
|
||||||
figure latexhelp.txt.gz /*figure*
|
|
||||||
final latexhelp.txt.gz /*final*
|
|
||||||
fleqn latexhelp.txt.gz /*fleqn*
|
|
||||||
flushleft latexhelp.txt.gz /*flushleft*
|
|
||||||
flushright latexhelp.txt.gz /*flushright*
|
|
||||||
fold-setting-adding latex-suite.txt.gz /*fold-setting-adding*
|
|
||||||
fold-setting-advanced latex-suite.txt.gz /*fold-setting-advanced*
|
|
||||||
font-lowlevelcommands latexhelp.txt.gz /*font-lowlevelcommands*
|
|
||||||
font-maps latex-suite.txt.gz /*font-maps*
|
|
||||||
font-size latexhelp.txt.gz /*font-size*
|
|
||||||
font-styles latexhelp.txt.gz /*font-styles*
|
|
||||||
forward-searching latex-suite.txt.gz /*forward-searching*
|
|
||||||
greek-letter-mappings latex-suite.txt.gz /*greek-letter-mappings*
|
|
||||||
headings latexhelp.txt.gz /*headings*
|
|
||||||
hyph- latexhelp.txt.gz /*hyph-*
|
|
||||||
im_1 imaps.txt.gz /*im_1*
|
|
||||||
imaps-usage imaps.txt.gz /*imaps-usage*
|
|
||||||
imaps.txt imaps.txt.gz /*imaps.txt*
|
|
||||||
imaps.txt-toc imaps.txt.gz /*imaps.txt-toc*
|
|
||||||
inserting-commands latex-suite.txt.gz /*inserting-commands*
|
|
||||||
inserting-env-f5 latex-suite.txt.gz /*inserting-env-f5*
|
|
||||||
inserting-env-shift-f1 latex-suite.txt.gz /*inserting-env-shift-f1*
|
|
||||||
inserting-env-threeletter latex-suite.txt.gz /*inserting-env-threeletter*
|
|
||||||
inserting-environments latex-suite.txt.gz /*inserting-environments*
|
|
||||||
inserting-packages latex-suite.txt.gz /*inserting-packages*
|
|
||||||
inverse-searching latex-suite.txt.gz /*inverse-searching*
|
|
||||||
itemize latexhelp.txt.gz /*itemize*
|
|
||||||
landscape latexhelp.txt.gz /*landscape*
|
|
||||||
latex latexhelp.txt.gz /*latex*
|
|
||||||
latex-boxes latexhelp.txt.gz /*latex-boxes*
|
|
||||||
latex-breaking latexhelp.txt.gz /*latex-breaking*
|
|
||||||
latex-classes latexhelp.txt.gz /*latex-classes*
|
|
||||||
latex-command-maps latex-suite.txt.gz /*latex-command-maps*
|
|
||||||
latex-commands latexhelp.txt.gz /*latex-commands*
|
|
||||||
latex-compiling latex-suite.txt.gz /*latex-compiling*
|
|
||||||
latex-completion latex-suite.txt.gz /*latex-completion*
|
|
||||||
latex-completion-cite latex-suite.txt.gz /*latex-completion-cite*
|
|
||||||
latex-counters latexhelp.txt.gz /*latex-counters*
|
|
||||||
latex-definitions latexhelp.txt.gz /*latex-definitions*
|
|
||||||
latex-environments latexhelp.txt.gz /*latex-environments*
|
|
||||||
latex-folding latex-suite.txt.gz /*latex-folding*
|
|
||||||
latex-footnotes latexhelp.txt.gz /*latex-footnotes*
|
|
||||||
latex-hor-space latexhelp.txt.gz /*latex-hor-space*
|
|
||||||
latex-inputting latexhelp.txt.gz /*latex-inputting*
|
|
||||||
latex-layout latexhelp.txt.gz /*latex-layout*
|
|
||||||
latex-lengths latexhelp.txt.gz /*latex-lengths*
|
|
||||||
latex-letters latexhelp.txt.gz /*latex-letters*
|
|
||||||
latex-macros latex-suite.txt.gz /*latex-macros*
|
|
||||||
latex-margin-notes latexhelp.txt.gz /*latex-margin-notes*
|
|
||||||
latex-master-file latex-suite.txt.gz /*latex-master-file*
|
|
||||||
latex-master-file-specification latex-suite.txt.gz /*latex-master-file-specification*
|
|
||||||
latex-math latexhelp.txt.gz /*latex-math*
|
|
||||||
latex-modes latexhelp.txt.gz /*latex-modes*
|
|
||||||
latex-package-scanning latex-suite.txt.gz /*latex-package-scanning*
|
|
||||||
latex-packages latex-suite.txt.gz /*latex-packages*
|
|
||||||
latex-page-styles latexhelp.txt.gz /*latex-page-styles*
|
|
||||||
latex-paragraphs latexhelp.txt.gz /*latex-paragraphs*
|
|
||||||
latex-parameters latexhelp.txt.gz /*latex-parameters*
|
|
||||||
latex-project latex-suite.txt.gz /*latex-project*
|
|
||||||
latex-project-example latex-suite.txt.gz /*latex-project-example*
|
|
||||||
latex-project-settings latex-suite.txt.gz /*latex-project-settings*
|
|
||||||
latex-references latexhelp.txt.gz /*latex-references*
|
|
||||||
latex-sectioning latexhelp.txt.gz /*latex-sectioning*
|
|
||||||
latex-spaces-boxes latexhelp.txt.gz /*latex-spaces-boxes*
|
|
||||||
latex-special latexhelp.txt.gz /*latex-special*
|
|
||||||
latex-start-end latexhelp.txt.gz /*latex-start-end*
|
|
||||||
latex-suite-commands latex-suite.txt.gz /*latex-suite-commands*
|
|
||||||
latex-suite-commands-maps latex-suite.txt.gz /*latex-suite-commands-maps*
|
|
||||||
latex-suite-credits latex-suite.txt.gz /*latex-suite-credits*
|
|
||||||
latex-suite-maintainer latex-suite.txt.gz /*latex-suite-maintainer*
|
|
||||||
latex-suite-maps latex-suite.txt.gz /*latex-suite-maps*
|
|
||||||
latex-suite-quickstart.txt latex-suite-quickstart.txt.gz /*latex-suite-quickstart.txt*
|
|
||||||
latex-suite-quickstart.txt-toc latex-suite-quickstart.txt.gz /*latex-suite-quickstart.txt-toc*
|
|
||||||
latex-suite-templates latex-suite.txt.gz /*latex-suite-templates*
|
|
||||||
latex-suite.txt latex-suite.txt.gz /*latex-suite.txt*
|
|
||||||
latex-suite.txt-toc latex-suite.txt.gz /*latex-suite.txt-toc*
|
|
||||||
latex-terminal latexhelp.txt.gz /*latex-terminal*
|
|
||||||
latex-toc latexhelp.txt.gz /*latex-toc*
|
|
||||||
latex-typefaces latexhelp.txt.gz /*latex-typefaces*
|
|
||||||
latex-ver-space latexhelp.txt.gz /*latex-ver-space*
|
|
||||||
latex-viewing latex-suite.txt.gz /*latex-viewing*
|
|
||||||
latex-viewing-rules latex-suite.txt.gz /*latex-viewing-rules*
|
|
||||||
latexhelp.txt latexhelp.txt.gz /*latexhelp.txt*
|
|
||||||
leqno latexhelp.txt.gz /*leqno*
|
|
||||||
letter-class latexhelp.txt.gz /*letter-class*
|
|
||||||
list latexhelp.txt.gz /*list*
|
|
||||||
lq_1 latex-suite-quickstart.txt.gz /*lq_1*
|
|
||||||
lq_10 latex-suite-quickstart.txt.gz /*lq_10*
|
|
||||||
lq_2 latex-suite-quickstart.txt.gz /*lq_2*
|
|
||||||
lq_3 latex-suite-quickstart.txt.gz /*lq_3*
|
|
||||||
lq_4 latex-suite-quickstart.txt.gz /*lq_4*
|
|
||||||
lq_5 latex-suite-quickstart.txt.gz /*lq_5*
|
|
||||||
lq_6 latex-suite-quickstart.txt.gz /*lq_6*
|
|
||||||
lq_7 latex-suite-quickstart.txt.gz /*lq_7*
|
|
||||||
lq_8 latex-suite-quickstart.txt.gz /*lq_8*
|
|
||||||
lq_8_1 latex-suite-quickstart.txt.gz /*lq_8_1*
|
|
||||||
lq_9 latex-suite-quickstart.txt.gz /*lq_9*
|
|
||||||
lq_9_1 latex-suite-quickstart.txt.gz /*lq_9_1*
|
|
||||||
lq_9_2 latex-suite-quickstart.txt.gz /*lq_9_2*
|
|
||||||
lq_a_bc latex-suite-quickstart.txt.gz /*lq_a_bc*
|
|
||||||
lq_a_bd latex-suite-quickstart.txt.gz /*lq_a_bd*
|
|
||||||
lq_a_be latex-suite-quickstart.txt.gz /*lq_a_be*
|
|
||||||
lq_a_bf latex-suite-quickstart.txt.gz /*lq_a_bf*
|
|
||||||
lq_a_bg latex-suite-quickstart.txt.gz /*lq_a_bg*
|
|
||||||
lq_a_bh latex-suite-quickstart.txt.gz /*lq_a_bh*
|
|
||||||
lq_a_bi latex-suite-quickstart.txt.gz /*lq_a_bi*
|
|
||||||
lq_a_bj latex-suite-quickstart.txt.gz /*lq_a_bj*
|
|
||||||
lq_a_bk latex-suite-quickstart.txt.gz /*lq_a_bk*
|
|
||||||
lq_a_bl latex-suite-quickstart.txt.gz /*lq_a_bl*
|
|
||||||
lq_a_bm latex-suite-quickstart.txt.gz /*lq_a_bm*
|
|
||||||
lq_a_bn latex-suite-quickstart.txt.gz /*lq_a_bn*
|
|
||||||
lq_a_bo latex-suite-quickstart.txt.gz /*lq_a_bo*
|
|
||||||
lq_u_1 latex-suite-quickstart.txt.gz /*lq_u_1*
|
|
||||||
lq_u_2 latex-suite-quickstart.txt.gz /*lq_u_2*
|
|
||||||
lq_u_3 latex-suite-quickstart.txt.gz /*lq_u_3*
|
|
||||||
lq_u_4 latex-suite-quickstart.txt.gz /*lq_u_4*
|
|
||||||
lq_u_5 latex-suite-quickstart.txt.gz /*lq_u_5*
|
|
||||||
lq_u_6 latex-suite-quickstart.txt.gz /*lq_u_6*
|
|
||||||
lq_u_7 latex-suite-quickstart.txt.gz /*lq_u_7*
|
|
||||||
lq_u_8 latex-suite-quickstart.txt.gz /*lq_u_8*
|
|
||||||
lq_u_9 latex-suite-quickstart.txt.gz /*lq_u_9*
|
|
||||||
lr-mode latexhelp.txt.gz /*lr-mode*
|
|
||||||
ls-completion-custom latex-suite.txt.gz /*ls-completion-custom*
|
|
||||||
ls-completion-ref latex-suite.txt.gz /*ls-completion-ref*
|
|
||||||
ls-completion-usage latex-suite.txt.gz /*ls-completion-usage*
|
|
||||||
ls-filename-completion latex-suite.txt.gz /*ls-filename-completion*
|
|
||||||
ls-general-purpose-settings latex-suite.txt.gz /*ls-general-purpose-settings*
|
|
||||||
ls-imap-f7 latex-suite.txt.gz /*ls-imap-f7*
|
|
||||||
ls-imap-s-f7 latex-suite.txt.gz /*ls-imap-s-f7*
|
|
||||||
ls-imaps-syntax latex-suite.txt.gz /*ls-imaps-syntax*
|
|
||||||
ls-new-macros latex-suite.txt.gz /*ls-new-macros*
|
|
||||||
ls-set-grepprg latex-suite.txt.gz /*ls-set-grepprg*
|
|
||||||
ls-vmap-f7 latex-suite.txt.gz /*ls-vmap-f7*
|
|
||||||
ls_1 latex-suite.txt.gz /*ls_1*
|
|
||||||
ls_10 latex-suite.txt.gz /*ls_10*
|
|
||||||
ls_10_1 latex-suite.txt.gz /*ls_10_1*
|
|
||||||
ls_10_1_1 latex-suite.txt.gz /*ls_10_1_1*
|
|
||||||
ls_10_1_2 latex-suite.txt.gz /*ls_10_1_2*
|
|
||||||
ls_10_2 latex-suite.txt.gz /*ls_10_2*
|
|
||||||
ls_10_2_1 latex-suite.txt.gz /*ls_10_2_1*
|
|
||||||
ls_10_2_10 latex-suite.txt.gz /*ls_10_2_10*
|
|
||||||
ls_10_2_11 latex-suite.txt.gz /*ls_10_2_11*
|
|
||||||
ls_10_2_12 latex-suite.txt.gz /*ls_10_2_12*
|
|
||||||
ls_10_2_13 latex-suite.txt.gz /*ls_10_2_13*
|
|
||||||
ls_10_2_14 latex-suite.txt.gz /*ls_10_2_14*
|
|
||||||
ls_10_2_15 latex-suite.txt.gz /*ls_10_2_15*
|
|
||||||
ls_10_2_16 latex-suite.txt.gz /*ls_10_2_16*
|
|
||||||
ls_10_2_2 latex-suite.txt.gz /*ls_10_2_2*
|
|
||||||
ls_10_2_3 latex-suite.txt.gz /*ls_10_2_3*
|
|
||||||
ls_10_2_4 latex-suite.txt.gz /*ls_10_2_4*
|
|
||||||
ls_10_2_5 latex-suite.txt.gz /*ls_10_2_5*
|
|
||||||
ls_10_2_6 latex-suite.txt.gz /*ls_10_2_6*
|
|
||||||
ls_10_2_7 latex-suite.txt.gz /*ls_10_2_7*
|
|
||||||
ls_10_2_8 latex-suite.txt.gz /*ls_10_2_8*
|
|
||||||
ls_10_2_9 latex-suite.txt.gz /*ls_10_2_9*
|
|
||||||
ls_11 latex-suite.txt.gz /*ls_11*
|
|
||||||
ls_11_1 latex-suite.txt.gz /*ls_11_1*
|
|
||||||
ls_11_10 latex-suite.txt.gz /*ls_11_10*
|
|
||||||
ls_11_10_1 latex-suite.txt.gz /*ls_11_10_1*
|
|
||||||
ls_11_1_1 latex-suite.txt.gz /*ls_11_1_1*
|
|
||||||
ls_11_1_2 latex-suite.txt.gz /*ls_11_1_2*
|
|
||||||
ls_11_2 latex-suite.txt.gz /*ls_11_2*
|
|
||||||
ls_11_2_1 latex-suite.txt.gz /*ls_11_2_1*
|
|
||||||
ls_11_2_2 latex-suite.txt.gz /*ls_11_2_2*
|
|
||||||
ls_11_2_3 latex-suite.txt.gz /*ls_11_2_3*
|
|
||||||
ls_11_2_4 latex-suite.txt.gz /*ls_11_2_4*
|
|
||||||
ls_11_3 latex-suite.txt.gz /*ls_11_3*
|
|
||||||
ls_11_3_1 latex-suite.txt.gz /*ls_11_3_1*
|
|
||||||
ls_11_3_10 latex-suite.txt.gz /*ls_11_3_10*
|
|
||||||
ls_11_3_11 latex-suite.txt.gz /*ls_11_3_11*
|
|
||||||
ls_11_3_12 latex-suite.txt.gz /*ls_11_3_12*
|
|
||||||
ls_11_3_13 latex-suite.txt.gz /*ls_11_3_13*
|
|
||||||
ls_11_3_2 latex-suite.txt.gz /*ls_11_3_2*
|
|
||||||
ls_11_3_3 latex-suite.txt.gz /*ls_11_3_3*
|
|
||||||
ls_11_3_4 latex-suite.txt.gz /*ls_11_3_4*
|
|
||||||
ls_11_3_5 latex-suite.txt.gz /*ls_11_3_5*
|
|
||||||
ls_11_3_6 latex-suite.txt.gz /*ls_11_3_6*
|
|
||||||
ls_11_3_7 latex-suite.txt.gz /*ls_11_3_7*
|
|
||||||
ls_11_3_8 latex-suite.txt.gz /*ls_11_3_8*
|
|
||||||
ls_11_3_9 latex-suite.txt.gz /*ls_11_3_9*
|
|
||||||
ls_11_4 latex-suite.txt.gz /*ls_11_4*
|
|
||||||
ls_11_4_1 latex-suite.txt.gz /*ls_11_4_1*
|
|
||||||
ls_11_4_2 latex-suite.txt.gz /*ls_11_4_2*
|
|
||||||
ls_11_5 latex-suite.txt.gz /*ls_11_5*
|
|
||||||
ls_11_5_1 latex-suite.txt.gz /*ls_11_5_1*
|
|
||||||
ls_11_5_2 latex-suite.txt.gz /*ls_11_5_2*
|
|
||||||
ls_11_5_3 latex-suite.txt.gz /*ls_11_5_3*
|
|
||||||
ls_11_5_4 latex-suite.txt.gz /*ls_11_5_4*
|
|
||||||
ls_11_5_5 latex-suite.txt.gz /*ls_11_5_5*
|
|
||||||
ls_11_6 latex-suite.txt.gz /*ls_11_6*
|
|
||||||
ls_11_6_1 latex-suite.txt.gz /*ls_11_6_1*
|
|
||||||
ls_11_6_2 latex-suite.txt.gz /*ls_11_6_2*
|
|
||||||
ls_11_6_3 latex-suite.txt.gz /*ls_11_6_3*
|
|
||||||
ls_11_6_4 latex-suite.txt.gz /*ls_11_6_4*
|
|
||||||
ls_11_6_5 latex-suite.txt.gz /*ls_11_6_5*
|
|
||||||
ls_11_6_6 latex-suite.txt.gz /*ls_11_6_6*
|
|
||||||
ls_11_6_7 latex-suite.txt.gz /*ls_11_6_7*
|
|
||||||
ls_11_6_8 latex-suite.txt.gz /*ls_11_6_8*
|
|
||||||
ls_11_7 latex-suite.txt.gz /*ls_11_7*
|
|
||||||
ls_11_7_1 latex-suite.txt.gz /*ls_11_7_1*
|
|
||||||
ls_11_7_2 latex-suite.txt.gz /*ls_11_7_2*
|
|
||||||
ls_11_8 latex-suite.txt.gz /*ls_11_8*
|
|
||||||
ls_11_8_1 latex-suite.txt.gz /*ls_11_8_1*
|
|
||||||
ls_11_8_2 latex-suite.txt.gz /*ls_11_8_2*
|
|
||||||
ls_11_8_3 latex-suite.txt.gz /*ls_11_8_3*
|
|
||||||
ls_11_8_4 latex-suite.txt.gz /*ls_11_8_4*
|
|
||||||
ls_11_8_5 latex-suite.txt.gz /*ls_11_8_5*
|
|
||||||
ls_11_8_6 latex-suite.txt.gz /*ls_11_8_6*
|
|
||||||
ls_11_8_7 latex-suite.txt.gz /*ls_11_8_7*
|
|
||||||
ls_11_9 latex-suite.txt.gz /*ls_11_9*
|
|
||||||
ls_11_9_1 latex-suite.txt.gz /*ls_11_9_1*
|
|
||||||
ls_11_9_2 latex-suite.txt.gz /*ls_11_9_2*
|
|
||||||
ls_12 latex-suite.txt.gz /*ls_12*
|
|
||||||
ls_2 latex-suite.txt.gz /*ls_2*
|
|
||||||
ls_3 latex-suite.txt.gz /*ls_3*
|
|
||||||
ls_3_1 latex-suite.txt.gz /*ls_3_1*
|
|
||||||
ls_3_10 latex-suite.txt.gz /*ls_3_10*
|
|
||||||
ls_3_10_1 latex-suite.txt.gz /*ls_3_10_1*
|
|
||||||
ls_3_10_2 latex-suite.txt.gz /*ls_3_10_2*
|
|
||||||
ls_3_10_3 latex-suite.txt.gz /*ls_3_10_3*
|
|
||||||
ls_3_10_4 latex-suite.txt.gz /*ls_3_10_4*
|
|
||||||
ls_3_11 latex-suite.txt.gz /*ls_3_11*
|
|
||||||
ls_3_12 latex-suite.txt.gz /*ls_3_12*
|
|
||||||
ls_3_12_1 latex-suite.txt.gz /*ls_3_12_1*
|
|
||||||
ls_3_12_2 latex-suite.txt.gz /*ls_3_12_2*
|
|
||||||
ls_3_1_1 latex-suite.txt.gz /*ls_3_1_1*
|
|
||||||
ls_3_1_1_1 latex-suite.txt.gz /*ls_3_1_1_1*
|
|
||||||
ls_3_1_1_2 latex-suite.txt.gz /*ls_3_1_1_2*
|
|
||||||
ls_3_1_1_3 latex-suite.txt.gz /*ls_3_1_1_3*
|
|
||||||
ls_3_1_2 latex-suite.txt.gz /*ls_3_1_2*
|
|
||||||
ls_3_1_2_1 latex-suite.txt.gz /*ls_3_1_2_1*
|
|
||||||
ls_3_1_2_2 latex-suite.txt.gz /*ls_3_1_2_2*
|
|
||||||
ls_3_1_3 latex-suite.txt.gz /*ls_3_1_3*
|
|
||||||
ls_3_2 latex-suite.txt.gz /*ls_3_2*
|
|
||||||
ls_3_2_1 latex-suite.txt.gz /*ls_3_2_1*
|
|
||||||
ls_3_2_2 latex-suite.txt.gz /*ls_3_2_2*
|
|
||||||
ls_3_2_3 latex-suite.txt.gz /*ls_3_2_3*
|
|
||||||
ls_3_3 latex-suite.txt.gz /*ls_3_3*
|
|
||||||
ls_3_4 latex-suite.txt.gz /*ls_3_4*
|
|
||||||
ls_3_5 latex-suite.txt.gz /*ls_3_5*
|
|
||||||
ls_3_6 latex-suite.txt.gz /*ls_3_6*
|
|
||||||
ls_3_7 latex-suite.txt.gz /*ls_3_7*
|
|
||||||
ls_3_8 latex-suite.txt.gz /*ls_3_8*
|
|
||||||
ls_3_8_1 latex-suite.txt.gz /*ls_3_8_1*
|
|
||||||
ls_3_9 latex-suite.txt.gz /*ls_3_9*
|
|
||||||
ls_4 latex-suite.txt.gz /*ls_4*
|
|
||||||
ls_4_1 latex-suite.txt.gz /*ls_4_1*
|
|
||||||
ls_4_2 latex-suite.txt.gz /*ls_4_2*
|
|
||||||
ls_4_3 latex-suite.txt.gz /*ls_4_3*
|
|
||||||
ls_4_3_1 latex-suite.txt.gz /*ls_4_3_1*
|
|
||||||
ls_4_4 latex-suite.txt.gz /*ls_4_4*
|
|
||||||
ls_4_4_1 latex-suite.txt.gz /*ls_4_4_1*
|
|
||||||
ls_4_4_2 latex-suite.txt.gz /*ls_4_4_2*
|
|
||||||
ls_5 latex-suite.txt.gz /*ls_5*
|
|
||||||
ls_5_1 latex-suite.txt.gz /*ls_5_1*
|
|
||||||
ls_5_2 latex-suite.txt.gz /*ls_5_2*
|
|
||||||
ls_5_3 latex-suite.txt.gz /*ls_5_3*
|
|
||||||
ls_5_3_1 latex-suite.txt.gz /*ls_5_3_1*
|
|
||||||
ls_5_4 latex-suite.txt.gz /*ls_5_4*
|
|
||||||
ls_5_5 latex-suite.txt.gz /*ls_5_5*
|
|
||||||
ls_6 latex-suite.txt.gz /*ls_6*
|
|
||||||
ls_6_1 latex-suite.txt.gz /*ls_6_1*
|
|
||||||
ls_6_2 latex-suite.txt.gz /*ls_6_2*
|
|
||||||
ls_6_3 latex-suite.txt.gz /*ls_6_3*
|
|
||||||
ls_6_4 latex-suite.txt.gz /*ls_6_4*
|
|
||||||
ls_6_5 latex-suite.txt.gz /*ls_6_5*
|
|
||||||
ls_7 latex-suite.txt.gz /*ls_7*
|
|
||||||
ls_7_1 latex-suite.txt.gz /*ls_7_1*
|
|
||||||
ls_7_2 latex-suite.txt.gz /*ls_7_2*
|
|
||||||
ls_7_3 latex-suite.txt.gz /*ls_7_3*
|
|
||||||
ls_8 latex-suite.txt.gz /*ls_8*
|
|
||||||
ls_8_1 latex-suite.txt.gz /*ls_8_1*
|
|
||||||
ls_8_2 latex-suite.txt.gz /*ls_8_2*
|
|
||||||
ls_8_2_1 latex-suite.txt.gz /*ls_8_2_1*
|
|
||||||
ls_8_2_2 latex-suite.txt.gz /*ls_8_2_2*
|
|
||||||
ls_8_2_3 latex-suite.txt.gz /*ls_8_2_3*
|
|
||||||
ls_8_2_4 latex-suite.txt.gz /*ls_8_2_4*
|
|
||||||
ls_8_2_5 latex-suite.txt.gz /*ls_8_2_5*
|
|
||||||
ls_8_3 latex-suite.txt.gz /*ls_8_3*
|
|
||||||
ls_9 latex-suite.txt.gz /*ls_9*
|
|
||||||
ls_9_1 latex-suite.txt.gz /*ls_9_1*
|
|
||||||
ls_9_2 latex-suite.txt.gz /*ls_9_2*
|
|
||||||
ls_a_bA latex-suite.txt.gz /*ls_a_bA*
|
|
||||||
ls_a_bB latex-suite.txt.gz /*ls_a_bB*
|
|
||||||
ls_a_bC latex-suite.txt.gz /*ls_a_bC*
|
|
||||||
ls_a_bD latex-suite.txt.gz /*ls_a_bD*
|
|
||||||
ls_a_bE latex-suite.txt.gz /*ls_a_bE*
|
|
||||||
ls_a_bF latex-suite.txt.gz /*ls_a_bF*
|
|
||||||
ls_a_bG latex-suite.txt.gz /*ls_a_bG*
|
|
||||||
ls_a_bH latex-suite.txt.gz /*ls_a_bH*
|
|
||||||
ls_a_bI latex-suite.txt.gz /*ls_a_bI*
|
|
||||||
ls_a_bJ latex-suite.txt.gz /*ls_a_bJ*
|
|
||||||
ls_a_bK latex-suite.txt.gz /*ls_a_bK*
|
|
||||||
ls_a_bL latex-suite.txt.gz /*ls_a_bL*
|
|
||||||
ls_a_bM latex-suite.txt.gz /*ls_a_bM*
|
|
||||||
ls_a_bN latex-suite.txt.gz /*ls_a_bN*
|
|
||||||
ls_a_bO latex-suite.txt.gz /*ls_a_bO*
|
|
||||||
ls_a_bP latex-suite.txt.gz /*ls_a_bP*
|
|
||||||
ls_a_bQ latex-suite.txt.gz /*ls_a_bQ*
|
|
||||||
ls_a_bR latex-suite.txt.gz /*ls_a_bR*
|
|
||||||
ls_a_bS latex-suite.txt.gz /*ls_a_bS*
|
|
||||||
ls_a_bT latex-suite.txt.gz /*ls_a_bT*
|
|
||||||
ls_a_bU latex-suite.txt.gz /*ls_a_bU*
|
|
||||||
ls_a_bV latex-suite.txt.gz /*ls_a_bV*
|
|
||||||
ls_a_bW latex-suite.txt.gz /*ls_a_bW*
|
|
||||||
ls_a_bX latex-suite.txt.gz /*ls_a_bX*
|
|
||||||
ls_a_bY latex-suite.txt.gz /*ls_a_bY*
|
|
||||||
ls_a_bZ latex-suite.txt.gz /*ls_a_bZ*
|
|
||||||
ls_a_bc latex-suite.txt.gz /*ls_a_bc*
|
|
||||||
ls_a_bd latex-suite.txt.gz /*ls_a_bd*
|
|
||||||
ls_a_be latex-suite.txt.gz /*ls_a_be*
|
|
||||||
ls_a_bf latex-suite.txt.gz /*ls_a_bf*
|
|
||||||
ls_a_bg latex-suite.txt.gz /*ls_a_bg*
|
|
||||||
ls_a_bh latex-suite.txt.gz /*ls_a_bh*
|
|
||||||
ls_a_bi latex-suite.txt.gz /*ls_a_bi*
|
|
||||||
ls_a_bj latex-suite.txt.gz /*ls_a_bj*
|
|
||||||
ls_a_bk latex-suite.txt.gz /*ls_a_bk*
|
|
||||||
ls_a_bl latex-suite.txt.gz /*ls_a_bl*
|
|
||||||
ls_a_bm latex-suite.txt.gz /*ls_a_bm*
|
|
||||||
ls_a_bn latex-suite.txt.gz /*ls_a_bn*
|
|
||||||
ls_a_bo latex-suite.txt.gz /*ls_a_bo*
|
|
||||||
ls_a_bp latex-suite.txt.gz /*ls_a_bp*
|
|
||||||
ls_a_bq latex-suite.txt.gz /*ls_a_bq*
|
|
||||||
ls_a_br latex-suite.txt.gz /*ls_a_br*
|
|
||||||
ls_a_bs latex-suite.txt.gz /*ls_a_bs*
|
|
||||||
ls_a_bt latex-suite.txt.gz /*ls_a_bt*
|
|
||||||
ls_a_bu latex-suite.txt.gz /*ls_a_bu*
|
|
||||||
ls_a_bv latex-suite.txt.gz /*ls_a_bv*
|
|
||||||
ls_a_bw latex-suite.txt.gz /*ls_a_bw*
|
|
||||||
ls_a_bx latex-suite.txt.gz /*ls_a_bx*
|
|
||||||
ls_a_by latex-suite.txt.gz /*ls_a_by*
|
|
||||||
ls_a_bz latex-suite.txt.gz /*ls_a_bz*
|
|
||||||
ls_a_cA latex-suite.txt.gz /*ls_a_cA*
|
|
||||||
ls_a_cB latex-suite.txt.gz /*ls_a_cB*
|
|
||||||
ls_a_cC latex-suite.txt.gz /*ls_a_cC*
|
|
||||||
ls_a_cD latex-suite.txt.gz /*ls_a_cD*
|
|
||||||
ls_a_cE latex-suite.txt.gz /*ls_a_cE*
|
|
||||||
ls_a_cF latex-suite.txt.gz /*ls_a_cF*
|
|
||||||
ls_a_cG latex-suite.txt.gz /*ls_a_cG*
|
|
||||||
ls_a_cH latex-suite.txt.gz /*ls_a_cH*
|
|
||||||
ls_a_cI latex-suite.txt.gz /*ls_a_cI*
|
|
||||||
ls_a_cJ latex-suite.txt.gz /*ls_a_cJ*
|
|
||||||
ls_a_cK latex-suite.txt.gz /*ls_a_cK*
|
|
||||||
ls_a_cL latex-suite.txt.gz /*ls_a_cL*
|
|
||||||
ls_a_cM latex-suite.txt.gz /*ls_a_cM*
|
|
||||||
ls_a_cN latex-suite.txt.gz /*ls_a_cN*
|
|
||||||
ls_a_cO latex-suite.txt.gz /*ls_a_cO*
|
|
||||||
ls_a_cP latex-suite.txt.gz /*ls_a_cP*
|
|
||||||
ls_a_cQ latex-suite.txt.gz /*ls_a_cQ*
|
|
||||||
ls_a_cR latex-suite.txt.gz /*ls_a_cR*
|
|
||||||
ls_a_cS latex-suite.txt.gz /*ls_a_cS*
|
|
||||||
ls_a_cT latex-suite.txt.gz /*ls_a_cT*
|
|
||||||
ls_a_cU latex-suite.txt.gz /*ls_a_cU*
|
|
||||||
ls_a_cV latex-suite.txt.gz /*ls_a_cV*
|
|
||||||
ls_a_cW latex-suite.txt.gz /*ls_a_cW*
|
|
||||||
ls_a_cX latex-suite.txt.gz /*ls_a_cX*
|
|
||||||
ls_a_cY latex-suite.txt.gz /*ls_a_cY*
|
|
||||||
ls_a_cZ latex-suite.txt.gz /*ls_a_cZ*
|
|
||||||
ls_a_ca latex-suite.txt.gz /*ls_a_ca*
|
|
||||||
ls_a_cb latex-suite.txt.gz /*ls_a_cb*
|
|
||||||
ls_a_cc latex-suite.txt.gz /*ls_a_cc*
|
|
||||||
ls_a_cd latex-suite.txt.gz /*ls_a_cd*
|
|
||||||
ls_a_ce latex-suite.txt.gz /*ls_a_ce*
|
|
||||||
ls_a_cf latex-suite.txt.gz /*ls_a_cf*
|
|
||||||
ls_a_cg latex-suite.txt.gz /*ls_a_cg*
|
|
||||||
ls_a_ch latex-suite.txt.gz /*ls_a_ch*
|
|
||||||
ls_a_ci latex-suite.txt.gz /*ls_a_ci*
|
|
||||||
ls_a_cj latex-suite.txt.gz /*ls_a_cj*
|
|
||||||
ls_a_ck latex-suite.txt.gz /*ls_a_ck*
|
|
||||||
ls_a_cl latex-suite.txt.gz /*ls_a_cl*
|
|
||||||
ls_a_cm latex-suite.txt.gz /*ls_a_cm*
|
|
||||||
ls_a_cn latex-suite.txt.gz /*ls_a_cn*
|
|
||||||
ls_a_co latex-suite.txt.gz /*ls_a_co*
|
|
||||||
ls_a_cp latex-suite.txt.gz /*ls_a_cp*
|
|
||||||
ls_a_cq latex-suite.txt.gz /*ls_a_cq*
|
|
||||||
ls_a_cr latex-suite.txt.gz /*ls_a_cr*
|
|
||||||
ls_a_cs latex-suite.txt.gz /*ls_a_cs*
|
|
||||||
ls_a_ct latex-suite.txt.gz /*ls_a_ct*
|
|
||||||
ls_a_cu latex-suite.txt.gz /*ls_a_cu*
|
|
||||||
ls_a_cv latex-suite.txt.gz /*ls_a_cv*
|
|
||||||
ls_a_cw latex-suite.txt.gz /*ls_a_cw*
|
|
||||||
ls_a_cx latex-suite.txt.gz /*ls_a_cx*
|
|
||||||
ls_a_cy latex-suite.txt.gz /*ls_a_cy*
|
|
||||||
ls_a_cz latex-suite.txt.gz /*ls_a_cz*
|
|
||||||
ls_a_dA latex-suite.txt.gz /*ls_a_dA*
|
|
||||||
ls_a_dB latex-suite.txt.gz /*ls_a_dB*
|
|
||||||
ls_a_dC latex-suite.txt.gz /*ls_a_dC*
|
|
||||||
ls_a_dD latex-suite.txt.gz /*ls_a_dD*
|
|
||||||
ls_a_dE latex-suite.txt.gz /*ls_a_dE*
|
|
||||||
ls_a_dF latex-suite.txt.gz /*ls_a_dF*
|
|
||||||
ls_a_dG latex-suite.txt.gz /*ls_a_dG*
|
|
||||||
ls_a_dH latex-suite.txt.gz /*ls_a_dH*
|
|
||||||
ls_a_dI latex-suite.txt.gz /*ls_a_dI*
|
|
||||||
ls_a_dJ latex-suite.txt.gz /*ls_a_dJ*
|
|
||||||
ls_a_dK latex-suite.txt.gz /*ls_a_dK*
|
|
||||||
ls_a_dL latex-suite.txt.gz /*ls_a_dL*
|
|
||||||
ls_a_dM latex-suite.txt.gz /*ls_a_dM*
|
|
||||||
ls_a_dN latex-suite.txt.gz /*ls_a_dN*
|
|
||||||
ls_a_dO latex-suite.txt.gz /*ls_a_dO*
|
|
||||||
ls_a_dP latex-suite.txt.gz /*ls_a_dP*
|
|
||||||
ls_a_dQ latex-suite.txt.gz /*ls_a_dQ*
|
|
||||||
ls_a_dR latex-suite.txt.gz /*ls_a_dR*
|
|
||||||
ls_a_dS latex-suite.txt.gz /*ls_a_dS*
|
|
||||||
ls_a_dT latex-suite.txt.gz /*ls_a_dT*
|
|
||||||
ls_a_dU latex-suite.txt.gz /*ls_a_dU*
|
|
||||||
ls_a_dV latex-suite.txt.gz /*ls_a_dV*
|
|
||||||
ls_a_dW latex-suite.txt.gz /*ls_a_dW*
|
|
||||||
ls_a_dX latex-suite.txt.gz /*ls_a_dX*
|
|
||||||
ls_a_dY latex-suite.txt.gz /*ls_a_dY*
|
|
||||||
ls_a_dZ latex-suite.txt.gz /*ls_a_dZ*
|
|
||||||
ls_a_da latex-suite.txt.gz /*ls_a_da*
|
|
||||||
ls_a_db latex-suite.txt.gz /*ls_a_db*
|
|
||||||
ls_a_dc latex-suite.txt.gz /*ls_a_dc*
|
|
||||||
ls_a_dd latex-suite.txt.gz /*ls_a_dd*
|
|
||||||
ls_a_de latex-suite.txt.gz /*ls_a_de*
|
|
||||||
ls_a_df latex-suite.txt.gz /*ls_a_df*
|
|
||||||
ls_a_dg latex-suite.txt.gz /*ls_a_dg*
|
|
||||||
ls_a_dh latex-suite.txt.gz /*ls_a_dh*
|
|
||||||
ls_a_di latex-suite.txt.gz /*ls_a_di*
|
|
||||||
ls_a_dj latex-suite.txt.gz /*ls_a_dj*
|
|
||||||
ls_a_dk latex-suite.txt.gz /*ls_a_dk*
|
|
||||||
ls_a_dl latex-suite.txt.gz /*ls_a_dl*
|
|
||||||
ls_a_dm latex-suite.txt.gz /*ls_a_dm*
|
|
||||||
ls_a_dn latex-suite.txt.gz /*ls_a_dn*
|
|
||||||
ls_a_do latex-suite.txt.gz /*ls_a_do*
|
|
||||||
ls_a_dp latex-suite.txt.gz /*ls_a_dp*
|
|
||||||
ls_a_dq latex-suite.txt.gz /*ls_a_dq*
|
|
||||||
ls_a_dr latex-suite.txt.gz /*ls_a_dr*
|
|
||||||
ls_a_ds latex-suite.txt.gz /*ls_a_ds*
|
|
||||||
ls_a_dt latex-suite.txt.gz /*ls_a_dt*
|
|
||||||
ls_a_du latex-suite.txt.gz /*ls_a_du*
|
|
||||||
ls_a_dv latex-suite.txt.gz /*ls_a_dv*
|
|
||||||
ls_a_dw latex-suite.txt.gz /*ls_a_dw*
|
|
||||||
ls_a_dx latex-suite.txt.gz /*ls_a_dx*
|
|
||||||
ls_a_dy latex-suite.txt.gz /*ls_a_dy*
|
|
||||||
ls_a_dz latex-suite.txt.gz /*ls_a_dz*
|
|
||||||
ls_a_eA latex-suite.txt.gz /*ls_a_eA*
|
|
||||||
ls_a_eB latex-suite.txt.gz /*ls_a_eB*
|
|
||||||
ls_a_eC latex-suite.txt.gz /*ls_a_eC*
|
|
||||||
ls_a_eD latex-suite.txt.gz /*ls_a_eD*
|
|
||||||
ls_a_eE latex-suite.txt.gz /*ls_a_eE*
|
|
||||||
ls_a_eF latex-suite.txt.gz /*ls_a_eF*
|
|
||||||
ls_a_eG latex-suite.txt.gz /*ls_a_eG*
|
|
||||||
ls_a_ea latex-suite.txt.gz /*ls_a_ea*
|
|
||||||
ls_a_eb latex-suite.txt.gz /*ls_a_eb*
|
|
||||||
ls_a_ec latex-suite.txt.gz /*ls_a_ec*
|
|
||||||
ls_a_ed latex-suite.txt.gz /*ls_a_ed*
|
|
||||||
ls_a_ee latex-suite.txt.gz /*ls_a_ee*
|
|
||||||
ls_a_ef latex-suite.txt.gz /*ls_a_ef*
|
|
||||||
ls_a_eg latex-suite.txt.gz /*ls_a_eg*
|
|
||||||
ls_a_eh latex-suite.txt.gz /*ls_a_eh*
|
|
||||||
ls_a_ei latex-suite.txt.gz /*ls_a_ei*
|
|
||||||
ls_a_ej latex-suite.txt.gz /*ls_a_ej*
|
|
||||||
ls_a_ek latex-suite.txt.gz /*ls_a_ek*
|
|
||||||
ls_a_el latex-suite.txt.gz /*ls_a_el*
|
|
||||||
ls_a_em latex-suite.txt.gz /*ls_a_em*
|
|
||||||
ls_a_en latex-suite.txt.gz /*ls_a_en*
|
|
||||||
ls_a_eo latex-suite.txt.gz /*ls_a_eo*
|
|
||||||
ls_a_ep latex-suite.txt.gz /*ls_a_ep*
|
|
||||||
ls_a_eq latex-suite.txt.gz /*ls_a_eq*
|
|
||||||
ls_a_er latex-suite.txt.gz /*ls_a_er*
|
|
||||||
ls_a_es latex-suite.txt.gz /*ls_a_es*
|
|
||||||
ls_a_et latex-suite.txt.gz /*ls_a_et*
|
|
||||||
ls_a_eu latex-suite.txt.gz /*ls_a_eu*
|
|
||||||
ls_a_ev latex-suite.txt.gz /*ls_a_ev*
|
|
||||||
ls_a_ew latex-suite.txt.gz /*ls_a_ew*
|
|
||||||
ls_a_ex latex-suite.txt.gz /*ls_a_ex*
|
|
||||||
ls_a_ey latex-suite.txt.gz /*ls_a_ey*
|
|
||||||
ls_a_ez latex-suite.txt.gz /*ls_a_ez*
|
|
||||||
ls_u_1 latex-suite.txt.gz /*ls_u_1*
|
|
||||||
ls_u_10 latex-suite.txt.gz /*ls_u_10*
|
|
||||||
ls_u_11 latex-suite.txt.gz /*ls_u_11*
|
|
||||||
ls_u_12 latex-suite.txt.gz /*ls_u_12*
|
|
||||||
ls_u_13 latex-suite.txt.gz /*ls_u_13*
|
|
||||||
ls_u_2 latex-suite.txt.gz /*ls_u_2*
|
|
||||||
ls_u_3 latex-suite.txt.gz /*ls_u_3*
|
|
||||||
ls_u_4 latex-suite.txt.gz /*ls_u_4*
|
|
||||||
ls_u_5 latex-suite.txt.gz /*ls_u_5*
|
|
||||||
ls_u_6 latex-suite.txt.gz /*ls_u_6*
|
|
||||||
ls_u_7 latex-suite.txt.gz /*ls_u_7*
|
|
||||||
ls_u_8 latex-suite.txt.gz /*ls_u_8*
|
|
||||||
ls_u_9 latex-suite.txt.gz /*ls_u_9*
|
|
||||||
lsq-compiling latex-suite-quickstart.txt.gz /*lsq-compiling*
|
|
||||||
lsq-conclusions latex-suite-quickstart.txt.gz /*lsq-conclusions*
|
|
||||||
lsq-debugging latex-suite-quickstart.txt.gz /*lsq-debugging*
|
|
||||||
lsq-folding latex-suite-quickstart.txt.gz /*lsq-folding*
|
|
||||||
lsq-insert-environment latex-suite-quickstart.txt.gz /*lsq-insert-environment*
|
|
||||||
lsq-inserting-reference latex-suite-quickstart.txt.gz /*lsq-inserting-reference*
|
|
||||||
lsq-inserting-template latex-suite-quickstart.txt.gz /*lsq-inserting-template*
|
|
||||||
lsq-keyboard-shortcuts latex-suite-quickstart.txt.gz /*lsq-keyboard-shortcuts*
|
|
||||||
lsq-lsq-inserting-package latex-suite-quickstart.txt.gz /*lsq-lsq-inserting-package*
|
|
||||||
lsq-quick-forward-searching latex-suite-quickstart.txt.gz /*lsq-quick-forward-searching*
|
|
||||||
lsq-quick-inverse-searching latex-suite-quickstart.txt.gz /*lsq-quick-inverse-searching*
|
|
||||||
lsq-using-tutorial latex-suite-quickstart.txt.gz /*lsq-using-tutorial*
|
|
||||||
lsq-viewing-dvi latex-suite-quickstart.txt.gz /*lsq-viewing-dvi*
|
|
||||||
macro-enabling latex-suite.txt.gz /*macro-enabling*
|
|
||||||
math, latexhelp.txt.gz /*math,*
|
|
||||||
math-misc latexhelp.txt.gz /*math-misc*
|
|
||||||
math-mode latexhelp.txt.gz /*math-mode*
|
|
||||||
math-spacing latexhelp.txt.gz /*math-spacing*
|
|
||||||
math-symbols latexhelp.txt.gz /*math-symbols*
|
|
||||||
math: latexhelp.txt.gz /*math:*
|
|
||||||
math; latexhelp.txt.gz /*math;*
|
|
||||||
matn! latexhelp.txt.gz /*matn!*
|
|
||||||
minipage latexhelp.txt.gz /*minipage*
|
|
||||||
notitlepage latexhelp.txt.gz /*notitlepage*
|
|
||||||
onecolumn latexhelp.txt.gz /*onecolumn*
|
|
||||||
oneside latexhelp.txt.gz /*oneside*
|
|
||||||
openany latexhelp.txt.gz /*openany*
|
|
||||||
openbib latexhelp.txt.gz /*openbib*
|
|
||||||
openright latexhelp.txt.gz /*openright*
|
|
||||||
overriding-macros latex-suite.txt.gz /*overriding-macros*
|
|
||||||
package-actions latex-suite.txt.gz /*package-actions*
|
|
||||||
paragraph-mode latexhelp.txt.gz /*paragraph-mode*
|
|
||||||
part-compiling latex-suite.txt.gz /*part-compiling*
|
|
||||||
pausing-imaps latex-suite.txt.gz /*pausing-imaps*
|
|
||||||
picture latexhelp.txt.gz /*picture*
|
|
||||||
picture-makebox latexhelp.txt.gz /*picture-makebox*
|
|
||||||
place-holder latex-suite.txt.gz /*place-holder*
|
|
||||||
place-holders latex-suite.txt.gz /*place-holders*
|
|
||||||
plain latexhelp.txt.gz /*plain*
|
|
||||||
pre-lengths latexhelp.txt.gz /*pre-lengths*
|
|
||||||
quotation latexhelp.txt.gz /*quotation*
|
|
||||||
quote-l latexhelp.txt.gz /*quote-l*
|
|
||||||
recommended-settings latex-suite.txt.gz /*recommended-settings*
|
|
||||||
remapping-latex-suite-keys latex-suite.txt.gz /*remapping-latex-suite-keys*
|
|
||||||
report-class latexhelp.txt.gz /*report-class*
|
|
||||||
roman latexhelp.txt.gz /*roman*
|
|
||||||
rqno latexhelp.txt.gz /*rqno*
|
|
||||||
section-mappings latex-suite.txt.gz /*section-mappings*
|
|
||||||
slides-class latexhelp.txt.gz /*slides-class*
|
|
||||||
smart-backspace latex-suite.txt.gz /*smart-backspace*
|
|
||||||
smart-keys latex-suite.txt.gz /*smart-keys*
|
|
||||||
sub-sup latexhelp.txt.gz /*sub-sup*
|
|
||||||
subscripts latexhelp.txt.gz /*subscripts*
|
|
||||||
superscripts latexhelp.txt.gz /*superscripts*
|
|
||||||
supporting-packages latex-suite.txt.gz /*supporting-packages*
|
|
||||||
tab' latexhelp.txt.gz /*tab'*
|
|
||||||
tab+ latexhelp.txt.gz /*tab+*
|
|
||||||
tab- latexhelp.txt.gz /*tab-*
|
|
||||||
tab< latexhelp.txt.gz /*tab<*
|
|
||||||
tab= latexhelp.txt.gz /*tab=*
|
|
||||||
tab> latexhelp.txt.gz /*tab>*
|
|
||||||
tab` latexhelp.txt.gz /*tab`*
|
|
||||||
taba latexhelp.txt.gz /*taba*
|
|
||||||
tabbing latexhelp.txt.gz /*tabbing*
|
|
||||||
tabular latexhelp.txt.gz /*tabular*
|
|
||||||
theorem latexhelp.txt.gz /*theorem*
|
|
||||||
titlepage latexhelp.txt.gz /*titlepage*
|
|
||||||
twocolumn latexhelp.txt.gz /*twocolumn*
|
|
||||||
twoside latexhelp.txt.gz /*twoside*
|
|
||||||
verbatim latexhelp.txt.gz /*verbatim*
|
|
||||||
verse latexhelp.txt.gz /*verse*
|
|
||||||
why-IMAP latex-suite.txt.gz /*why-IMAP*
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/bib_latexSuite.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/bibtex.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/bibtools.py
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/brackets.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/compiler.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/custommacros.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/diacritics.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/dictionaries/SIunits
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/dictionaries/dictionary
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/elementmacros.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/envmacros.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/folding.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/macros/example
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/main.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/mathmacros-utf.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/mathmacros.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/multicompile.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/outline.py
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages.vim
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/SIunits
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/accents
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/acromake
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/afterpage
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/alltt
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/amsmath
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/amsthm
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/amsxtra
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/arabic
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/array
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/babel
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/bar
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/biblatex
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/bm
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/bophook
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/boxedminipage
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/caption2
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/cases
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/ccaption
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/changebar
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/chapterbib
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/cite
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/color
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/comma
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/csquotes
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/deleq
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/drftcite
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/dropping
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/enumerate
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/eqlist
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/eqparbox
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/everyshi
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/exmpl
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/fixme
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/flafter
|
|
|
@ -1 +0,0 @@
|
||||||
/usr/share/vim/addons/ftplugin/latex-suite/packages/float
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue