From 75c9ae6352a3eac49442b92ffbd7ab64278f7a3f Mon Sep 17 00:00:00 2001 From: arrow_zhang Date: Fri, 23 May 2008 11:59:40 +0800 Subject: [PATCH] [UP] can install now --- conf_slk120/Makefile | 29 +- conf_slk120/bash/.bashrc | 1 + conf_slk120/bash/Makefile | 14 +- conf_slk120/bin/.bin/shell/getip | 2 +- conf_slk120/bin/Makefile | 11 +- conf_slk120/dhcp/Makefile | 7 + conf_slk120/dhcp/dhcpd.conf | 120 +- conf_slk120/dhcp/{dhcpd.conf => dhcpd.conf.ori} | 0 conf_slk120/dict/.stardict/stardict.cfg | 14 +- conf_slk120/dict/Makefile | 8 +- conf_slk120/emacs/Makefile | 9 +- .../auto-save-list/.saves-3244-lap.arrow.org~ | 2 - .../emacs.d/auto-save-list/.saves-4896-arrowacer~ | 4 - conf_slk120/env/Makefile | 17 +- conf_slk120/ethereal/.ethereal/preferences | 1826 +++++++++++++ conf_slk120/ethereal/.ethereal/recent | 23 +- conf_slk120/ethereal/Makefile | 12 +- conf_slk120/fonts/Makefile | 24 +- conf_slk120/fvwm/Makefile | 6 + conf_slk120/fvwm/fvwm | 1 + conf_slk120/galculator/Makefile | 6 + conf_slk120/git/Makefile | 8 +- conf_slk120/grub/Makefile | 5 + conf_slk120/gtk/Makefile | 16 +- conf_slk120/http/Makefile | 6 + conf_slk120/indent/.indent.pro | 1 + conf_slk120/indent/Makefile | 6 + conf_slk120/inetd/Makefile | 7 + conf_slk120/latex/Makefile | 6 + conf_slk120/mail/Makefile | 18 +- conf_slk120/mail/ssmtp.conf | 2 +- conf_slk120/mplayer/Makefile | 6 + conf_slk120/rest/Makefile | 12 +- conf_slk120/scim/.scim/config | 41 +- conf_slk120/scim/.scim/global | 3 +- conf_slk120/scim/Makefile | 11 +- conf_slk120/ssh/Makefile | 22 +- conf_slk120/svn/Makefile | 10 +- conf_slk120/sysinit/Makefile | 10 +- conf_slk120/vim/Makefile | 12 +- conf_slk120/vim/_vim/.highlighter_settings.vim | 3 - conf_slk120/vim/_vim/doc/tags | 2834 ++++++++++++++++++++ conf_slk120/vim/_vim/files/Rules.make.skel | 2 +- conf_slk120/vim/_vim/ftplugin/nice.vim | 1 + conf_slk120/vim/_vim/syntax/nice.vim | 137 + conf_slk120/vim/_vimrc | 8 +- conf_slk120/xinit/Makefile | 9 +- conf_slk120/xorg/Makefile | 11 +- conf_slk120/xorg/xorg.conf.acer_1 | 136 + 49 files changed, 5220 insertions(+), 259 deletions(-) create mode 100644 conf_slk120/dhcp/Makefile rewrite conf_slk120/dhcp/dhcpd.conf (93%) copy conf_slk120/dhcp/{dhcpd.conf => dhcpd.conf.ori} (100%) delete mode 100644 conf_slk120/emacs/emacs.d/auto-save-list/.saves-3244-lap.arrow.org~ delete mode 100644 conf_slk120/emacs/emacs.d/auto-save-list/.saves-4896-arrowacer~ create mode 100644 conf_slk120/ethereal/.ethereal/preferences rewrite conf_slk120/fonts/Makefile (99%) create mode 100644 conf_slk120/fvwm/Makefile create mode 120000 conf_slk120/fvwm/fvwm create mode 100644 conf_slk120/galculator/Makefile create mode 100644 conf_slk120/grub/Makefile create mode 100644 conf_slk120/http/Makefile create mode 100755 conf_slk120/indent/.indent.pro create mode 100644 conf_slk120/indent/Makefile create mode 100644 conf_slk120/inetd/Makefile create mode 100644 conf_slk120/latex/Makefile create mode 100644 conf_slk120/mplayer/Makefile rewrite conf_slk120/scim/.scim/global (91%) delete mode 100755 conf_slk120/vim/_vim/.highlighter_settings.vim create mode 100755 conf_slk120/vim/_vim/doc/tags create mode 100644 conf_slk120/vim/_vim/ftplugin/nice.vim create mode 100644 conf_slk120/vim/_vim/syntax/nice.vim create mode 100644 conf_slk120/xorg/xorg.conf.acer_1 diff --git a/conf_slk120/Makefile b/conf_slk120/Makefile index 15eb3ce..a201c24 100644 --- a/conf_slk120/Makefile +++ b/conf_slk120/Makefile @@ -1,15 +1,28 @@ # Makefile for install my conf files into slackware 12.0 -# create at 09/14/2007 -help: +export TOP=$(shell pwd) +export RM=/bin/rm -rf +export LN=/bin/ln -s +export ECHO=/bin/echo -install: +DIRS:= bash bin dhcp dict emacs env ethereal fonts fvwm galculator +DIRS+= git grub gtk http indent inetd latex mail mplayer rest scim +DIRS+= ssh svn sysinit vim xinit xorg -link: +all: + @(for _DIR in ${DIRS}; do \ + ${MAKE} -C $${_DIR} $@; \ + done) -copy: +del: + @(for _DIR in ${DIRS}; do \ + ${MAKE} -C $${_DIR} $@; \ + done) -update: - -uninstall: +echo: + @(for _DIR in ${DIRS}; do \ + /bin/echo "$${_DIR}"; \ + done) +test: + make -C zz test diff --git a/conf_slk120/bash/.bashrc b/conf_slk120/bash/.bashrc index 2799663..b7aeb44 100644 --- a/conf_slk120/bash/.bashrc +++ b/conf_slk120/bash/.bashrc @@ -105,3 +105,4 @@ rxvt* | "rxvt-unicode") #not tty ;; esac fortune +PS1='\u@\h:\w\n$?\$ ' diff --git a/conf_slk120/bash/Makefile b/conf_slk120/bash/Makefile index 3836194..63c9738 100644 --- a/conf_slk120/bash/Makefile +++ b/conf_slk120/bash/Makefile @@ -1,10 +1,8 @@ -FILES= .bash_profile .bashrc -help: - @echo -e "subdir:\n $(FILES)\n" +all: + ${LN} ${TOP}/bash/.bash_profile ~/.bash_profile + ${LN} ${TOP}/bash/.bashrc ~/.bashrc -install: - @$(CP) $(FILES) $(ARROW) - -chown: - for _FILE in $(FILES); do $(CHOWN) $(WHOOWN) $(ARROW)/$${_FILE}; done +del: + ${RM} ~/.bash_profile + ${RM} ~/.bashrc diff --git a/conf_slk120/bin/.bin/shell/getip b/conf_slk120/bin/.bin/shell/getip index bd105d5..7d272c6 100755 --- a/conf_slk120/bin/.bin/shell/getip +++ b/conf_slk120/bin/.bin/shell/getip @@ -5,7 +5,7 @@ isfixip=$1 FIXIP=172.21.5.133 -IFACE=eth1 +IFACE=eth0 sudo killall -9 dhcpcd 1>/dev/null 2>&1 #echo $isfixip diff --git a/conf_slk120/bin/Makefile b/conf_slk120/bin/Makefile index 7d9d80b..43c7ee3 100644 --- a/conf_slk120/bin/Makefile +++ b/conf_slk120/bin/Makefile @@ -1,10 +1,7 @@ -DIRS= .bin -help: - @echo -e "subdir:\n $(FILES)\n" +all: + ${LN} ${TOP}/bin/.bin ~/.bin -install: - @$(CP) $(DIRS) $(ARROW) +del: + ${RM} ~/.bin -chown: - for _FILE in $(DIRS); do $(CHOWN) -R $(WHOOWN) $(ARROW)/$${_FILE}; done diff --git a/conf_slk120/dhcp/Makefile b/conf_slk120/dhcp/Makefile new file mode 100644 index 0000000..87b32ed --- /dev/null +++ b/conf_slk120/dhcp/Makefile @@ -0,0 +1,7 @@ + +all: + sudo ${LN} ${TOP}/dhcp/dhcpd.conf /etc/dhcpd.conf + +del: + sudo ${RM} /etc/dhcpd.conf + diff --git a/conf_slk120/dhcp/dhcpd.conf b/conf_slk120/dhcp/dhcpd.conf dissimilarity index 93% index 00d716d..7341f57 100644 --- a/conf_slk120/dhcp/dhcpd.conf +++ b/conf_slk120/dhcp/dhcpd.conf @@ -1,86 +1,34 @@ -# dhcpd.conf -# -# Sample configuration file for ISC dhcpd -# - -# option definitions common to all supported networks... -option domain-name "example.org"; -# option domain-name-servers ns1.example.org, ns2.example.org; -option domain-name-servers 61.177.7.1, 172.21.1.249; -ddns-update-style none; -allow booting; -allow bootp; - -default-lease-time 3600; -max-lease-time 3600; - -# If this DHCP server is the official DHCP server for the local -# network, the authoritative directive should be uncommented. -#authoritative; - -# Use this to send dhcp log messages to a different log file (you also -# have to hack syslog.conf to complete the redirection). -log-facility local7; - -# No service will be given on this subnet, but declaring it helps the -# DHCP server to understand the network topology. - - -# This declaration allows BOOTP clients to get dynamic addresses, -# which we don't really recommend. -# A slightly different configuration for an internal subnet. -subnet 192.168.10.0 netmask 255.255.255.0 { - range 192.168.10.60 192.168.10.90; - option domain-name-servers 61.177.7.1, 172.21.1.249; - option domain-name "61.177.7.1"; - option routers 192.168.10.1; - option broadcast-address 192.168.10.255; - default-lease-time 3600; - max-lease-time 3600; -} - -# Hosts which require special configuration options can be listed in -# host statements. If no address is specified, the address will be -# allocated dynamically (if possible), but the host-specific information -# will still come from the host declaration. - -host passacaglia { - hardware ethernet 0:0:c0:5d:bd:95; - filename "vmunix.passacaglia"; - server-name "toccata.fugue.com"; -} - -# Fixed IP addresses can also be specified for hosts. These addresses -# should not also be listed as being available for dynamic assignment. -# Hosts for which fixed IP addresses have been specified can boot using -# BOOTP or DHCP. Hosts for which no fixed address is specified can only -# be booted with DHCP, unless there is an address range on the subnet -# to which a BOOTP client is connected which has the dynamic-bootp flag -# set. -host fantasia { - hardware ethernet 08:00:07:26:c0:a5; - fixed-address fantasia.fugue.com; -} - -host clientname { -# filename "solos/flash.bin"; -# filename "boot.bin"; -# filename "arrow.bin"; - filename "u-boot.bin"; -# filename "dg834guv5.img"; -# filename "u-boot.img"; - server-name "dell"; - next-server dell; - hardware ethernet 00:c0:02:31:03:01; - fixed-address 192.168.10.90; -} - -# group { -# next-server 192.168.1.11; -# host tftpclient { -# tftp client hardware address -# hardware ethernet 00:c0:02:31:00:01; -# filename "flash.bin"; -# } -# } - +authoritative; +ddns-update-style none; +allow bootp; +next-server 192.168.0.1; +default-lease-time 604800; +max-lease-time 2419200; + +subnet 192.168.0.0 netmask 255.255.255.0 { + option domain-name "arrow"; + option broadcast-address 192.168.0.255; + option subnet-mask 255.255.255.0; + option domain-name-servers 192.168.0.1; + option routers 192.168.0.1; + range dynamic-bootp 192.168.0.50 192.168.0.100; + use-host-decl-names on; + filename "/tftp/pxelinux.0"; + if substring (option vendor-class-identifier, 0, 9) = "PXEClient" { + filename "pxelinux.0"; + } +} + +#host clientname { +# filename "solos/flash.bin"; +# filename "boot.bin"; +# filename "arrow.bin"; +# filename "u-boot.bin"; +# filename "dg834guv5.img"; +# filename "u-boot.img"; +# server-name "dell"; +# next-server dell; +# hardware ethernet 00:c0:02:31:03:01; +# fixed-address 192.168.10.90; +#} + diff --git a/conf_slk120/dhcp/dhcpd.conf b/conf_slk120/dhcp/dhcpd.conf.ori similarity index 100% copy from conf_slk120/dhcp/dhcpd.conf copy to conf_slk120/dhcp/dhcpd.conf.ori diff --git a/conf_slk120/dict/.stardict/stardict.cfg b/conf_slk120/dict/.stardict/stardict.cfg index f4853c6..c41fe09 100644 --- a/conf_slk120/dict/.stardict/stardict.cfg +++ b/conf_slk120/dict/.stardict/stardict.cfg @@ -1,8 +1,14 @@ +[/apps/stardict/preferences/main_window] +window_width=761 +window_height=426 +hpaned_pos=211 + [/apps/stardict/preferences/dictionary] +only_scan_while_modifier_key=1 +use_custom_font=1 +custom_font=WenQuanYi Bitmap Song 10 enable_sound_event=0 -[/apps/stardict/preferences/main_window] -window_width=673 -window_height=415 -hpaned_pos=186 +[/apps/stardict/preferences/notification_area_icon] +query_in_floatwin=0 diff --git a/conf_slk120/dict/Makefile b/conf_slk120/dict/Makefile index f290e1f..7f67ca5 100644 --- a/conf_slk120/dict/Makefile +++ b/conf_slk120/dict/Makefile @@ -1,6 +1,6 @@ -help: - @echo -e "subdir:\n $(SUBDIR)\n" - -install: +all: + ${LN} ${TOP}/dict/.stardict/stardict.cfg ~/.stardict/stardict.cfg +del: + ${RM} ~/.stardict/stardict.cfg diff --git a/conf_slk120/emacs/Makefile b/conf_slk120/emacs/Makefile index e7faa8d..0371013 100644 --- a/conf_slk120/emacs/Makefile +++ b/conf_slk120/emacs/Makefile @@ -1,5 +1,8 @@ -help: - @echo -e "subdir:\n $(SUBDIR)\n" -install: +all: + ${LN} ${TOP}/emacs/.emacs ~/.emacs + ${LN} ${TOP}/emacs/emacs.d ~/.emacs.d +del: + ${RM} ~/.emacs + ${RM} ~/.emacs.d diff --git a/conf_slk120/emacs/emacs.d/auto-save-list/.saves-3244-lap.arrow.org~ b/conf_slk120/emacs/emacs.d/auto-save-list/.saves-3244-lap.arrow.org~ deleted file mode 100644 index d68bd66..0000000 --- a/conf_slk120/emacs/emacs.d/auto-save-list/.saves-3244-lap.arrow.org~ +++ /dev/null @@ -1,2 +0,0 @@ -/home/arrow/.vimrc -/home/arrow/#.vimrc# diff --git a/conf_slk120/emacs/emacs.d/auto-save-list/.saves-4896-arrowacer~ b/conf_slk120/emacs/emacs.d/auto-save-list/.saves-4896-arrowacer~ deleted file mode 100644 index 4a4c9c8..0000000 --- a/conf_slk120/emacs/emacs.d/auto-save-list/.saves-4896-arrowacer~ +++ /dev/null @@ -1,4 +0,0 @@ -/home/arrow/.vimrc -/home/arrow/#.vimrc# -/home/arrow/.vimrc -/home/arrow/#.emacs# diff --git a/conf_slk120/env/Makefile b/conf_slk120/env/Makefile index 283676d..7758acd 100644 --- a/conf_slk120/env/Makefile +++ b/conf_slk120/env/Makefile @@ -1,9 +1,12 @@ -FILES= .Xdefaults .Xmodmap .arrowcolor .inputrc -help: - @echo -e "subdir:\n $(SUBDIR)\n" +all: + ${LN} ${TOP}/env/.Xdefaults ~/.Xdefaults + ${LN} ${TOP}/env/.Xmodmap ~/.Xmodmap + ${LN} ${TOP}/env/.arrowcolor ~/.arrowcolor + ${LN} ${TOP}/env/.inputrc ~/.inputrc -install: - @$(CP) $(FILES) $(ARROW) -chown: - for _FILE in $(FILES); do $(CHOWN) $(WHOOWN) $(ARROW)/$${_FILE}; done +del: + ${RM} ~/.Xdefaults + ${RM} ~/.Xmodmap + ${RM} ~/.arrowcolor + ${RM} ~/.inputrc diff --git a/conf_slk120/ethereal/.ethereal/preferences b/conf_slk120/ethereal/.ethereal/preferences new file mode 100644 index 0000000..b837bda --- /dev/null +++ b/conf_slk120/ethereal/.ethereal/preferences @@ -0,0 +1,1826 @@ +# Configuration file for Ethereal 0.10.14. +# +# This file is regenerated each time preferences are saved within +# Ethereal. Making manual changes should be safe, however. + +######## User Interface ######## + +# Vertical scrollbars should be on right side? +# TRUE or FALSE (case-insensitive). +gui.scrollbar_on_right: TRUE + +# Packet-list selection bar can be used to browse w/o selecting? +# TRUE or FALSE (case-insensitive). +gui.packet_list_sel_browse: FALSE + +# Protocol-tree selection bar can be used to browse w/o selecting? +# TRUE or FALSE (case-insensitive). +gui.protocol_tree_sel_browse: FALSE + +# Alternating colors in TreeViews? +# TRUE or FALSE (case-insensitive). +gui.tree_view_altern_colors: FALSE + +# Place filter toolbar inside the statusbar? +# TRUE or FALSE (case-insensitive). +gui.filter_toolbar_show_in_statusbar: FALSE + +# Protocol-tree line style. +# One of: NONE, SOLID, DOTTED, TABBED +gui.protocol_tree_line_style: NONE + +# Protocol-tree expander style. +# One of: NONE, SQUARE, TRIANGLE, CIRCULAR +gui.protocol_tree_expander_style: SQUARE + +# Hex dump highlight style. +# One of: BOLD, INVERSE +gui.hex_dump_highlight_style: INVERSE + +# Main Toolbar style. +# One of: ICONS, TEXT, BOTH +gui.toolbar_main_style: ICONS + +# Save window position at exit? +# TRUE or FALSE (case-insensitive). +gui.geometry.save.position: FALSE + +# Save window size at exit? +# TRUE or FALSE (case-insensitive). +gui.geometry.save.size: TRUE + +# Save window maximized state at exit (GTK2 only)? +# TRUE or FALSE (case-insensitive). +gui.geometry.save.maximized: TRUE + +# Open a console window (WIN32 only)? +# One of: NEVER, AUTOMATIC, ALWAYS +gui.console_open: NEVER + +# The max. number of items in the open recent files list. +# A decimal number. +gui.recent_files_count.max: 10 + +# Where to start the File Open dialog box. +# One of: LAST_OPENED, SPECIFIED +gui.fileopen.style: LAST_OPENED + +# Directory to start in when opening File Open dialog. +gui.fileopen.dir: + +# The preview timeout in the File Open dialog. +# A decimal number (in seconds). +gui.fileopen.preview: 3 + +# Ask to save unsaved capture files? +# TRUE or FALSE (case-insensitive). +gui.ask_unsaved: TRUE + +# Wrap to beginning/end of file during search? +# TRUE or FALSE (case-insensitive). +gui.find_wrap: TRUE + +# The path to the webbrowser. +# Ex: mozilla %s +gui.webbrowser: mozilla %s + +# Custom window title. (Prepended to existing titles.) +gui.window_title: + +######## User Interface: Layout ######## + +# Layout type (1-6). +gui.layout_type: 1 + +# Layout content of the panes (1-3). +# One of: NONE, PLIST, PDETAILS, PBYTES +gui.layout_content_1: PLIST +gui.layout_content_2: PDETAILS +gui.layout_content_3: PBYTES + +######## User Interface: Columns ######## + +# Packet list column format. +# Each pair of strings consists of a column title and its format. +column.format: "No.", "%m", "Time", "%At", "Source", "%s", "Destination", + "%d", "Protocol", "%p", "Info", "%i" + +######## User Interface: Font ######## + +# Font name for packet list, protocol tree, and hex dump panes (GTK version 1). +gui.font_name: -misc-fixed-medium-r-semicondensed-*-*-100-*-*-*-*-iso8859-1 + +# Font name for packet list, protocol tree, and hex dump panes (GTK version 2). +gui.gtk2.font_name: Courier 11 + +######## User Interface: Colors ######## + +# Color preferences for a marked frame. +# Each value is a six digit hexadecimal color value in the form rrggbb. +gui.marked_frame.fg: ffffff +gui.marked_frame.bg: 000000 + +# TCP stream window color preferences. +# Each value is a six digit hexadecimal color value in the form rrggbb. +stream.client.fg: 7f0000 +stream.client.bg: fbeded +stream.server.fg: 00007f +stream.server.bg: ededfb + +######## Console: logging level ######## +# (debugging only, not in the Preferences dialog) +# A bitmask of glib log levels: +# G_LOG_LEVEL_ERROR = 4 +# G_LOG_LEVEL_CRITICAL = 8 +# G_LOG_LEVEL_WARNING = 16 +# G_LOG_LEVEL_MESSAGE = 32 +# G_LOG_LEVEL_INFO = 64 +# G_LOG_LEVEL_DEBUG = 128 +console.log.level: 28 + +####### Capture ######## + +# Default capture device +capture.device: eth0 + +# Capture in promiscuous mode? +# TRUE or FALSE (case-insensitive). +capture.prom_mode: TRUE + +# Update packet list in real time during capture? +# TRUE or FALSE (case-insensitive). +capture.real_time_update: TRUE + +# Scroll packet list during capture? +# TRUE or FALSE (case-insensitive). +capture.auto_scroll: TRUE + +# Show capture info dialog while capturing? +# TRUE or FALSE (case-insensitive). +capture.show_info: FALSE + +######## Printing ######## + +# Can be one of "text" or "postscript". +print.format: text + +# Can be one of "command" or "file". +print.destination: command + +# This is the file that gets written to when the destination is set to "file" +print.file: ethereal.out + +# Output gets piped to this command when the destination is set to "command" +print.command: lpr + +####### Name Resolution ######## + +# Resolve addresses to names? +# TRUE or FALSE (case-insensitive), or a list of address types to resolve. +name_resolve: FALSE + +# Name resolution concurrency. +# A decimal number. +name_resolve_concurrency: 500 + +####### Protocols ######## + +# Set the UDP port for AudioCodes Trunk Traces.Use http://x.x.x.x/TrunkTraces to enable the traces in the Blade +# A decimal number. +actrace.udp_port: 2428 + +# Set the TCP port for AgentX(if other than the default of 705) +# A decimal number. +agentx.tcp.agentx_port: 705 + +# Whether the AH payload decode should be placed in a subtree +# TRUE or FALSE (case-insensitive). +ah.place_ah_payload_in_subtree: FALSE + +# Whether the AIM dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +aim.desegment: TRUE + +# Whether that payload of UDP packets with a specific destination port should be automatically dissected as ALC packets +# TRUE or FALSE (case-insensitive). +alc.default.udp_port.enabled: FALSE + +# Specifies the UDP destination port for automatic dissection of ALC packets +# A decimal number. +alc.default.udp_port: 4001 + +# Whether the LCT header Codepoint field should be considered the FEC Encoding ID of carried object +# TRUE or FALSE (case-insensitive). +alc.lct.codepoint_as_fec_id: TRUE + +# How to decode LCT header extention 192 +# One of: Don't decode, Decode as FLUTE extension (EXT_FDT) +# (case-insensitive). +alc.lct.ext.192: Decode as FLUTE extension (EXT_FDT) + +# How to decode LCT header extention 193 +# One of: Don't decode, Decode as FLUTE extension (EXT_CENC) +# (case-insensitive). +alc.lct.ext.193: Decode as FLUTE extension (EXT_CENC) + +# Whether persistent call leg information is to be kept +# TRUE or FALSE (case-insensitive). +alcap.leg_info: TRUE + +# The dynamic payload type which will be interpretyed as AMR +# A decimal number. +amr.dynamic.payload.type: 0 + +# Type of AMR encoding of the payload +# One of: RFC 3267, AMR IF1, AMR IF2 +# (case-insensitive). +amr.encoding.version: RFC 3267 + +# (if other than the default of IOS 4.0.1) +# One of: IS-634 rev. 0, TSB-80, IS-634-A, IOS 2.x, IOS 3.x, IOS 4.0.1 +# (case-insensitive). +ansi_a_bsmap.global_variant: IOS 4.0.1 + +# The UDP port on which Art-Net packets will be sent +# A decimal number. +artnet.udp_port: 6454 + +# The way DMX values are displayed +# One of: Percent, Hexadecimal, Decimal +# (case-insensitive). +artnet.dmx_disp_chan_val_type: Percent + +# The way DMX channel numbers are displayed +# One of: Hexadecimal, Decimal +# (case-insensitive). +artnet.dmx_disp_chan_nr_type: Hexadecimal + +# The number of columns for the DMX display +# One of: 6, 10, 12, 16, 24 +# (case-insensitive). +artnet.dmx_disp_col_count: 16 + +# The TCP ports on which ASN.1 messages will be read +# A string denoting an positive integer range (e.g., "1-20,30-40"). +asn1.tcp_ports: 801 + +# The UDP ports on which ASN.1 messages will be read +# A string denoting an positive integer range (e.g., "1-20,30-40"). +asn1.udp_ports: 801 + +# The SCTP ports on which ASN.1 messages will be read +# A string denoting an positive integer range (e.g., "1-20,30-40"). +asn1.sctp_ports: 801 + +# Desegment ASN.1 messages that span TCP segments +# TRUE or FALSE (case-insensitive). +asn1.desegment_messages: TRUE + +# Compiled ASN.1 description of ASN.1 types +# A string. +asn1.file: + +# Name of top level PDU +# A string. +asn1.pdu_name: ASN1 + +# Offset for non-reassembled packets, wrong if this happens on other than the first packet! +# A decimal number. +asn1.first_pdu_offset: 0 + +# Show full names for all values +# TRUE or FALSE (case-insensitive). +asn1.flat: FALSE + +# Allow this recursion level for eliminated type references +# One of: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 +# (case-insensitive). +asn1.type_recursion: 1 + +# Extra output useful for debuging +# TRUE or FALSE (case-insensitive). +asn1.debug: FALSE + +# log to file $TMP/ethereal.log +# TRUE or FALSE (case-insensitive). +asn1.verbose_log: FALSE + +# Whether the ATP dissector should reassemble messages spanning multiple DDP packets +# TRUE or FALSE (case-insensitive). +atp.desegment: TRUE + +# Set the port for BEEP messages (if other than the default of 10288) +# A decimal number. +beep.tcp.port: 10288 + +# Specifies that BEEP requires CRLF as a terminator, and not just CR or LF +# TRUE or FALSE (case-insensitive). +beep.strict_header_terminator: TRUE + +# Whether the dissector should also display internal ASN.1 BER details such as Identifier and Length fields +# TRUE or FALSE (case-insensitive). +ber.show_internals: FALSE + +# Whether the BGP dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +bgp.desegment: TRUE + +# BGP dissector detect the length of the AS number in AS_PATH attributes automatically or manually (NOTE: Automatic detection is not 100% accurate) +# One of: Auto-detect, 2 octet, 4 octet +# (case-insensitive). +bgp.asn_len: Auto-detect + +# Whether the BitTorrent dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +bittorrent.desegment: TRUE + +# Enabling this will tell which BitTorrent client that produced the handshake message +# TRUE or FALSE (case-insensitive). +bittorrent.decode_client: FALSE + +# Novell Servers option 85 can be configured as a string instead of address +# TRUE or FALSE (case-insensitive). +bootp.novellserverstring: FALSE + +# The PacketCable CCC protocol version +# One of: PKT-SP-PROV-I05-021127, IETF Draft 5, RFC 3495 +# (case-insensitive). +bootp.pkt.ccc.protocol_version: RFC 3495 + +# Option Number for PacketCable CableLabs Client Configuration +# A decimal number. +bootp.pkt.ccc.option: 122 + +# For the sake of sub-dissectors registering to accept data from the BSSAP/BSAP dissector, this defines whether it is identified as BSSAP or BSAP. +# One of: BSSAP, BSAP +# (case-insensitive). +bssap.bsap_or_bssap: BSSAP + +# Decode NRI (for use with SGSN in Pool) +# TRUE or FALSE (case-insensitive). +bssgp.decode_nri: FALSE + +# NRI length, in bits +# A decimal number. +bssgp.nri_length: 4 + +# The date format: (DD/MM) or (MM/DD) +# One of: DD/MM/YYYY, MM/DD/YYYY +# (case-insensitive). +camel.date.format: DD/MM/YYYY + +# TCAP Subsystem numbers used for Camel +# A string denoting an positive integer range (e.g., "1-20,30-40"). +camel.tcap.ssn: 6-9 + +# Whether the CAST dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +cast.reassembly: TRUE + +# Set the port for NetFlow messages +# A decimal number. +cflow.udp.port: 2055 + +# The type of CHDLC frame checksum (none, 16-bit, 32-bit) +# One of: None, 16-Bit, 32-Bit +# (case-insensitive). +chdlc.fcs_type: None + +# The version of CIGI with which to dissect packets +# One of: From Packet, CIGI 2, CIGI 3 +# (case-insensitive). +cigi.version: From Packet + +# The byte order with which to dissect CIGI packets (CIGI3) +# One of: From Packet, Big-Endian, Little-Endian +# (case-insensitive). +cigi.byte_order: From Packet + +# IPv4 address or hostname of the host +# A string. +cigi.host: + +# IPv4 address or hostname of the image generator +# A string. +cigi.ig: + +# NSAP selector for Transport Protocol (last byte in hex) +# A hexadecimal number. +clnp.tp_nsap_selector: 0x21 + +# Always try to decode NSDU as transport PDUs +# TRUE or FALSE (case-insensitive). +clnp.always_decode_transport: FALSE + +# Whether segmented CLNP datagrams should be reassembled +# TRUE or FALSE (case-insensitive). +clnp.reassemble: TRUE + +# Whether the CMP-over-TCP dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +cmp.desegment: TRUE + +# Set the TCP port for COPS messages +# A decimal number. +cops.tcp.cops_port: 3288 + +# Whether the COPS dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +cops.desegment: TRUE + +# Decode the COPS messages using PacketCable clients. (Select port 2126) +# TRUE or FALSE (case-insensitive). +cops.packetcable: TRUE + +# Whether segmented COTP datagrams should be reassembled. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +cotp.reassemble: TRUE + +# How TSAPs should be displayed +# One of: As strings if printable, As strings, As bytes +# (case-insensitive). +cotp.tsap_display: As strings if printable + +# Set the port for CPFI messages (if other than the default of 5000) +# A decimal number. +cpfi.udp.port: 5000 + +# Set the port for InstanceToInstance messages (if other than the default of 5001) +# A decimal number. +cpfi.udp.port2: 5001 + +# Control the way the '-->' is displayed. When enabled, keeps the 'lowest valued' endpoint of the src-dest pair on the left, and the arrow moves to distinguish source from dest. When disabled, keeps the arrow pointing right so the source of the frame is always on the left. +# TRUE or FALSE (case-insensitive). +cpfi.arrow_ctl: TRUE + +# Set the port for DAP operations (if other than the default of 102) +# A decimal number. +dap.tcp.port: 102 + +# Whether the DCE/RPC dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +dcerpc.desegment_dcerpc: TRUE + +# Whether the DCE/RPC dissector should reassemble fragmented DCE/RPC PDUs +# TRUE or FALSE (case-insensitive). +dcerpc.reassemble_dcerpc: TRUE + +# Display some DCOM unmarshalled fields usually hidden +# TRUE or FALSE (case-insensitive). +dcom.display_unmarshalling_details: FALSE + +# Whether the DCCP summary line should be shown in the protocol tree +# TRUE or FALSE (case-insensitive). +dcp.summary_in_tree: TRUE + +# Try to decode a packet using an heuristic sub-dissector before using a sub-dissector registered to a specific port +# TRUE or FALSE (case-insensitive). +dcp.try_heuristic_first: FALSE + +# Whether to check the validity of the DCCP checksum +# TRUE or FALSE (case-insensitive). +dcp.check_checksum: TRUE + +# Set the port for DHCP failover communications +# A decimal number. +dhcpfo.tcp_port: 519 + +# Whether the DHCP failover dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +dhcpfo.desegment: TRUE + +# Standard version used for decoding +# One of: Diameter base draft version 16 and below, Diameter base RFC 3588 +# (case-insensitive). +diameter.version: Diameter base RFC 3588 + +# Set the TCP port for Diameter messages +# A decimal number. +diameter.tcp.port: 3868 + +# Set the SCTP port for Diameter messages +# A decimal number. +diameter.sctp.port: 3868 + +# Set the dictionary used for Diameter messages +# A string. +diameter.dictionary.name: /usr/local/share/ethereal/diameter/dictionary.xml + +# Whether the Diameter dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +diameter.desegment: TRUE + +# If set, the value 0 (zero) can be used as a valid application ID. This is used in experimental cases. +# TRUE or FALSE (case-insensitive). +diameter.allow_zero_as_app_id: TRUE + +# If console output for errors should be suppressed or not +# TRUE or FALSE (case-insensitive). +diameter.suppress_console_output: TRUE + +# Set the UDP port for DIS messages +# A decimal number. +dis.udp.port: 3000 + +# Set the port for DISP operations (if other than the default of 102) +# A decimal number. +disp.tcp.port: 102 + +# Set the TCP port for DISTCC messages +# A decimal number. +distcc.tcp.port: 3632 + +# Whether the DISTCC dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +distcc.desegment_distcc_over_tcp: TRUE + +# Whether the DNS dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +dns.desegment_dns_messages: TRUE + +# Set the port for DOP operations (if other than the default of 102) +# A decimal number. +dop.tcp.port: 102 + +# Whether the DSI dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +dsi.desegment: TRUE + +# Set the port for DSP operations (if other than the default of 102) +# A decimal number. +dsp.tcp.port: 102 + +# Whether the eDonkey dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +edonkey.desegment: TRUE + +# Whether the EtherNet/IP dissector should desegment all messages spanning multiple TCP segments +# TRUE or FALSE (case-insensitive). +enip.desegment: TRUE + +# The UDP port on which ENTTEC packets will be sent +# A decimal number. +enttec.udp_port: 3333 + +# The TCP port on which ENTTEC packets will be sent +# A decimal number. +enttec.tcp_port: 3333 + +# The way DMX values are displayed +# One of: Percent, Hexadecimal, Decimal +# (case-insensitive). +enttec.dmx_disp_chan_val_type: Percent + +# The way DMX channel numbers are displayed +# One of: Hexadecimal, Decimal +# (case-insensitive). +enttec.dmx_disp_chan_nr_type: Hexadecimal + +# The number of columns for the DMX display +# One of: 6, 10, 12, 16, 24 +# (case-insensitive). +enttec.dmx_disp_col_count: 16 + +# Assumes a 12 byte auth (SHA1/MD5) and attempts decode based on the ethertype 13 bytes from packet end +# TRUE or FALSE (case-insensitive). +esp.enable_null_encryption_decode_heuristic: FALSE + +# Whether packets should be interpreted as coming from CheckPoint FireWall-1 monitor file if they look as if they do +# TRUE or FALSE (case-insensitive). +eth.interpret_as_fw1_monitor: FALSE + +# Set TCP port 1 for etheric messages +# A decimal number. +etheric.tcp.port1: 1806 + +# Set TCP port 2 for etheric messages +# A decimal number. +etheric.tcp.port2: 10002 + +# If enabled, reassembly of multi-frame sequences is done +# TRUE or FALSE (case-insensitive). +fc.reassemble: TRUE + +# This is the size of non-last frames in a multi-frame sequence +# A decimal number. +fc.max_frame_size: 1024 + +# Whether the FCIP dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +fcip.desegment: TRUE + +# Port number used for FCIP +# A decimal number. +fcip.target_port: 3225 + +# Whether the FDDI dissector should add 3-byte padding to all captured FDDI packets (useful with e.g. Tru64 UNIX tcpdump) +# TRUE or FALSE (case-insensitive). +fddi.padding: FALSE + +# Encapsulation +# One of: FRF 3.2/Cisco HDLC, GPRS Network Service, Raw Ethernet +# (case-insensitive). +fr.encap: FRF 3.2/Cisco HDLC + +# Show File Offset +# TRUE or FALSE (case-insensitive). +frame.show_file_off: FALSE + +# Treat all frames as DOCSIS Frames +# TRUE or FALSE (case-insensitive). +frame.force_docsis_encap: FALSE + +# Whether the FireWall-1 summary line should be shown in the protocol tree +# TRUE or FALSE (case-insensitive). +fw1.summary_in_tree: TRUE + +# Whether the Firewall-1 monitor file includes UUID information +# TRUE or FALSE (case-insensitive). +fw1.with_uuid: FALSE + +# Whether the interface list includes the chain position +# TRUE or FALSE (case-insensitive). +fw1.iflist_with_chain: FALSE + +# Whether the GIOP dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +giop.desegment_giop_messages: TRUE + +# Whether the Gryphon dissector should desegment all messages spanning multiple TCP segments +# TRUE or FALSE (case-insensitive). +gryphon.desegment: TRUE + +# Always decode a GSM Short Message as Connectionless WSP if a Port Number Information Element is present in the SMS User Data Header. +# TRUE or FALSE (case-insensitive). +gsm-sms-ud.port_number_udh_means_wsp: FALSE + +# Always try subdissection of the 1st fragment of a fragmented GSM Short Message. If reassembly is possible, the Short Message may be dissected twice (once as a short frame, once in its entirety). +# TRUE or FALSE (case-insensitive). +gsm-sms-ud.try_dissect_1st_fragment: FALSE + +# Prevent sub-dissectors from replacing column data with their own. Eg. Prevent WSP dissector overwriting SMPP information. +# TRUE or FALSE (case-insensitive). +gsm-sms-ud.prevent_dissectors_chg_cols: FALSE + +# TCAP Subsystem numbers used for GSM MAP +# A string denoting an positive integer range (e.g., "1-20,30-40"). +gsm_map.tcap.ssn: 6-9 + +# GTPv0 port (default 3386) +# A decimal number. +gtp.v0_port: 3386 + +# GTPv1 control plane port (default 2123) +# A decimal number. +gtp.v1c_port: 2123 + +# GTPv1 user plane port (default 2152) +# A decimal number. +gtp.v1u_port: 2152 + +# Dissect T-PDU +# TRUE or FALSE (case-insensitive). +gtp.dissect_tpdu: TRUE + +# GTP ETSI order +# TRUE or FALSE (case-insensitive). +gtp.check_etsi: FALSE + +# Dissect GTP over TCP +# TRUE or FALSE (case-insensitive). +gtp.dissect_gtp_over_tcp: TRUE + +# Whether the H.225 dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +h225.reassembly: TRUE + +# ON - display tunnelled H.245 inside H.225.0 tree, OFF - display tunnelled H.245 in root tree after H.225.0 +# TRUE or FALSE (case-insensitive). +h225.h245_in_tree: TRUE + +# ON - display tunnelled protocols inside H.225.0 tree, OFF - display tunnelled protocols in root tree after H.225.0 +# TRUE or FALSE (case-insensitive). +h225.tp_in_tree: TRUE + +# Whether the H.245 dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +h245.reassembly: TRUE + +# Whether the dissector should show short names or the long names from the standard +# TRUE or FALSE (case-insensitive). +h245.shorttypes: FALSE + +# Whether persistent context information is to be kept +# TRUE or FALSE (case-insensitive). +h248.ctx_info: FALSE + +# Whether the HTTP dissector should reassemble headers of a request spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +http.desegment_headers: TRUE + +# Whether the HTTP dissector should use the "Content-length:" value, if present, to reassemble the body of a request spanning multiple TCP segments, and reassemble chunked data spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +http.desegment_body: TRUE + +# Whether to reassemble bodies of entities that are transfered using the "Transfer-Encoding: chunked" method +# TRUE or FALSE (case-insensitive). +http.dechunk_body: TRUE + +# Whether to uncompress entity bodies that are compressed using "Content-Encoding: " +# TRUE or FALSE (case-insensitive). +http.decompress_body: TRUE + +# Decode packets on this TCP port as HTTP +# A decimal number. +http.tcp_alternate_port: 0 + +# Whether the 128th and following bytes of the ICMP payload should be decoded as MPLS extensions or as a portion of the original packet +# TRUE or FALSE (case-insensitive). +icmp.favor_icmp_mpls: FALSE + +# Whether the iFCP dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +ifcp.desegment: TRUE + +# Port number used for iFCP +# A decimal number. +ifcp.target_port: 3420 + +# Set Subsystem number used for INAP +# A decimal number. +inap.tcap.itu_ssn: 1 + +# Set Subsystem number used for INAP +# A decimal number. +inap.tcap.itu_ssn1: 1 + +# Whether the IPv4 type-of-service field should be decoded as a Differentiated Services field (see RFC2474/RFC2475) +# TRUE or FALSE (case-insensitive). +ip.decode_tos_as_diffserv: TRUE + +# Whether fragmented IP datagrams should be reassembled +# TRUE or FALSE (case-insensitive). +ip.defragment: TRUE + +# Whether the IP summary line should be shown in the protocol tree +# TRUE or FALSE (case-insensitive). +ip.summary_in_tree: TRUE + +# Whether to validate the IP checksum +# TRUE or FALSE (case-insensitive). +ip.check_checksum: TRUE + +# Whether the IPDC dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +ipdc.desegment_ipdc_messages: TRUE + +# Set the IPDC monitoring port +# A decimal number. +ipdc.tcp.port: 6668 + +# Whether fragmented IPv6 datagrams should be reassembled +# TRUE or FALSE (case-insensitive). +ipv6.defragment: TRUE + +# The iSCSI protocol version +# One of: Draft 08, Draft 09, Draft 11, Draft 12, Draft 13 +# (case-insensitive). +iscsi.protocol_version: Draft 13 + +# Whether the iSCSI dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +iscsi.desegment_iscsi_messages: TRUE + +# When enabled, packets that appear bogus are ignored +# TRUE or FALSE (case-insensitive). +iscsi.bogus_pdu_filter: TRUE + +# Ignore packets that haven't set the F bit when they should have +# TRUE or FALSE (case-insensitive). +iscsi.demand_good_f_bit: FALSE + +# Treat packets whose data segment length is greater than this value as bogus +# A decimal number. +iscsi.bogus_pdu_max_data_len: 262144 + +# Port number of iSCSI target +# A decimal number. +iscsi.target_port: 3260 + +# When enabled, pdus are assumed to contain a data digest +# TRUE or FALSE (case-insensitive). +iscsi.enable_data_digests: FALSE + +# When enabled, data digests are assumed to be CRC32C +# TRUE or FALSE (case-insensitive). +iscsi.data_digest_is_crc32c: TRUE + +# The size of a data digest (bytes) +# A decimal number. +iscsi.data_digest_size: 4 + +# Whether the iSNS dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +isns.desegment: TRUE + +# Show the CIC value (in addition to the message type) in the Info column +# TRUE or FALSE (case-insensitive). +isup.show_cic_in_info: TRUE + +# Whether APM messages datagrams should be reassembled +# TRUE or FALSE (case-insensitive). +isup.defragment_apm: TRUE + +# Set TCP port for ISUP Thin messages +# A decimal number. +isup_thin.tcp.port: 0 + +# Support Implementers Guide (version 01) +# TRUE or FALSE (case-insensitive). +iua.support_ig: FALSE + +# Whether IuUP Payload bits should be dissected +# TRUE or FALSE (case-insensitive). +iuup.dissect_payload: FALSE + +# The payload contains a two byte pseudoheader indicating direction and circuit_id +# TRUE or FALSE (case-insensitive). +iuup.two_byte_pseudoheader: FALSE + +# Whether the JXTA dissector should reassemble messages spanning multiple UDP/HTTP/TCP segments. To use this option you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings and enable "Reassemble fragmented IP datagrams" in the IP protocol settings. +# TRUE or FALSE (case-insensitive). +jxta.desegment: TRUE + +# Enable to inspect UDP datagrams for JXTA messages. +# TRUE or FALSE (case-insensitive). +jxta.udp.heuristic: FALSE + +# Enable to inspect TCP connections for JXTA conversations. +# TRUE or FALSE (case-insensitive). +jxta.tcp.heuristic: FALSE + +# K12 module configuration filename +# A string. +k12.config: + +# Whether the Kerberos dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +kerberos.desegment: TRUE + +# L2TPv3 Cookie Size +# One of: None, 4 Byte Cookie, 8 Byte Cookie +# (case-insensitive). +l2tp.cookie_size: 4 Byte Cookie + +# L2TPv3 L2-Specific Sublayer +# One of: None, Default L2-Specific, ATM-Specific +# (case-insensitive). +l2tp.l2_specific: Default L2-Specific + +# Decode L2TPv3 packet contents as this protocol +# One of: Ethernet, Cisco HDLC, Frame Relay, PPP, IP, MPLS, AAL5 +# (case-insensitive). +l2tp.protocol: Cisco HDLC + +# Whether the Laplink dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +laplink.desegment_laplink_over_tcp: TRUE + +# Whether the LDAP dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +ldap.desegment_ldap_messages: TRUE + +# Set the TCP port for messages (if other than the default of 646) +# A decimal number. +ldp.tcp.port: 646 + +# Set the UDP port for messages (if other than the default of 646) +# A decimal number. +ldp.udp.port: 646 + +# Whether the LDP dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +ldp.desegment_ldp_messages: TRUE + +# Whether to autodetect the cipher bit (because it might be set on unciphered data) +# TRUE or FALSE (case-insensitive). +llcgprs.autodetect_cipher_bit: FALSE + +# UDP port number to use for LMP +# A decimal number. +lmp.udp_port: 701 + +# Swap frame control bytes (needed for some APs +# TRUE or FALSE (case-insensitive). +lwapp.swap_fc: FALSE + +# Set the UDP port for lwres daemon(if other than the default of 921) +# A decimal number. +lwres.udp.lwres_port: 921 + +# Version used by Ethereal +# One of: Internet Draft version 2, Internet Draft version 8, Internet Draft version 12 +# (case-insensitive). +m2pa.version: Internet Draft version 12 + +# Set the port for M2PA messages (Default of 3565) +# A decimal number. +m2pa.port: 3565 + +# The value of the parameter tag for protocol data 1 +# One of: 0x000e (Draft 7), 0x0300 (RFC3331) +# (case-insensitive). +m2ua.protocol_data_1_tag: 0x0300 (RFC3331) + +# Version used by Ethereal +# One of: Internet Draft version 5, Internet Draft version 6, Internet Draft version 7, RFC 3332 +# (case-insensitive). +m3ua.version: RFC 3332 + +# Whether the dissector should decrypt MAPI PDUs +# TRUE or FALSE (case-insensitive). +mapi.decrypt: FALSE + +# The name of the file containing the mate module's configuration +# A string. +mate.config: + +# A frame is considered for decoding as MDSHDR if either ethertype is 0xFCFC or zero. Turn this flag off if you you don't want ethertype zero to be decoded as MDSHDR. This might be useful to avoid problems with test frames. +# TRUE or FALSE (case-insensitive). +mdshdr.decode_if_etype_zero: TRUE + +# Set the TCP port for MEGACO text messages +# A decimal number. +megaco.tcp.txt_port: 2944 + +# Set the UDP port for MEGACO text messages +# A decimal number. +megaco.udp.txt_port: 2944 + +# Specifies that the raw text of the MEGACO message should be displayed instead of (or in addition to) the dissection tree +# TRUE or FALSE (case-insensitive). +megaco.display_raw_text: TRUE + +# Specifies that the dissection tree of the MEGACO message should be displayed instead of (or in addition to) the raw text +# TRUE or FALSE (case-insensitive). +megaco.display_dissect_tree: TRUE + +# Set the UDP port for gateway messages (if other than the default of 2427) +# A decimal number. +mgcp.tcp.gateway_port: 2427 + +# Set the TCP port for gateway messages (if other than the default of 2427) +# A decimal number. +mgcp.udp.gateway_port: 2427 + +# Set the TCP port for callagent messages (if other than the default of 2727) +# A decimal number. +mgcp.tcp.callagent_port: 2727 + +# Set the UDP port for callagent messages (if other than the default of 2727) +# A decimal number. +mgcp.udp.callagent_port: 2727 + +# Specifies that the raw text of the MGCP message should be displayed instead of (or in addition to) the dissection tree +# TRUE or FALSE (case-insensitive). +mgcp.display_raw_text: FALSE + +# Display the number of MGCP messages found in a packet in the protocol column. +# TRUE or FALSE (case-insensitive). +mgcp.display_mgcp_message_count: FALSE + +# Display multipart bodies with no media type dissector as raw text (may cause problems with binary data). +# TRUE or FALSE (case-insensitive). +mime_multipart.display_unknown_body_as_text: FALSE + +# Set the UDP port for messages (if other than the default of 3503) +# A decimal number. +mpls-echo.udp.port: 3503 + +# Whether the MQ dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +mq.desegment: TRUE + +# Whether the MQ dissector should reassemble MQ messages spanning multiple TSH segments +# TRUE or FALSE (case-insensitive). +mq.reassembly: TRUE + +# Specifies that the raw text of the MSRP message should be displayed in addition to the dissection tree +# TRUE or FALSE (case-insensitive). +msrp.display_raw_text: TRUE + +# Whether the MTP2 dissector should use extended sequence numbers as described in Q.703, Annex A as a default. +# TRUE or FALSE (case-insensitive). +mtp2.use_extended_sequence_numbers: FALSE + +# The SS7 standard used in MTP3 packets +# One of: ITU, ANSI, Chinese ITU +# (case-insensitive). +mtp3.standard: ITU + +# The structure of the pointcodes in ITU networks +# One of: Unstructured, 3-8-3, 4-3-4-3 +# (case-insensitive). +mtp3.itu_pc_structure: Unstructured + +# Use 5-bit (instead of 8-bit) SLS in ANSI MTP3 packets +# TRUE or FALSE (case-insensitive). +mtp3.ansi_5_bit_sls: FALSE + +# Format for point code in the address columns +# One of: Decimal, Hexadecimal, NI-Decimal, NI-Hexadecimal, Dashed +# (case-insensitive). +mtp3.addr_format: Dashed + +# Whether the MySQL dissector should reassemble MySQL buffers spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +mysql.desegment_buffers: TRUE + +# Whether the NBSS dissector should reassemble packets spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +nbss.desegment_nbss_commands: TRUE + +# Whether the NCP dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +ncp.desegment: TRUE + +# Whether the NCP dissector should defragment NDS messages spanning multiple reply packets. +# TRUE or FALSE (case-insensitive). +ncp.defragment_nds: TRUE + +# Whether the NCP dissector should echo the NDS Entry ID to name resolves to the expert table. +# TRUE or FALSE (case-insensitive). +ncp.eid_2_expert: TRUE + +# Whether the NCP dissector should echo NCP connection information to the expert table. +# TRUE or FALSE (case-insensitive). +ncp.connection_2_expert: TRUE + +# Whether the NCP dissector should echo protocol errors to the expert table. +# TRUE or FALSE (case-insensitive). +ncp.error_2_expert: TRUE + +# Whether the NCP dissector should echo server information to the expert table. +# TRUE or FALSE (case-insensitive). +ncp.server_2_expert: TRUE + +# Version of the NDMP protocol +# One of: Version 2, Version 3, Version 4, Version 5 +# (case-insensitive). +ndmp.protocol_version: Version 2 + +# Whether the NDMP dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +ndmp.desegment: TRUE + +# Whether the dissector should defragment NDMP messages spanning multiple packets. +# TRUE or FALSE (case-insensitive). +ndmp.defragment: TRUE + +# Whether the NDPS dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +ndps.desegment_tcp: TRUE + +# Whether the NDPS dissector should reassemble fragmented NDPS messages spanning multiple SPX packets +# TRUE or FALSE (case-insensitive). +ndps.desegment_spx: TRUE + +# Whether or not the NDPS dissector should show object id's and other details +# TRUE or FALSE (case-insensitive). +ndps.show_oid: FALSE + +# Whether the NetBIOS dissector should defragment messages spanning multiple frames +# TRUE or FALSE (case-insensitive). +netbios.defragment: TRUE + +# The TCP port on which Monotone Netsync packets will be sent +# A decimal number. +netsync.tcp_port: 5253 + +# Whether the Netsync dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +netsync.desegment_netsync_messages: TRUE + +# Whether the dissector should snoop the FH to filename mappings by looking inside certain packets +# TRUE or FALSE (case-insensitive). +nfs.file_name_snooping: FALSE + +# Whether the dissector should snoop the full pathname for files for matching FH's +# TRUE or FALSE (case-insensitive). +nfs.file_full_name_snooping: FALSE + +# With this option display filters for nfs fhandles (nfs.fh.{name|full_name|hash}) will find both the request and response packets for a RPC call, even if the actual fhandle is only present in one of the packets +# TRUE or FALSE (case-insensitive). +nfs.fhandle_find_both_reqrep: FALSE + +# Whether the dissector will track and match MSG and RES calls for asynchronous NLM +# TRUE or FALSE (case-insensitive). +nlm.msg_res_matching: FALSE + +# Check this to decode NORM traffic between clients +# TRUE or FALSE (case-insensitive). +norm.heuristic_norm: FALSE + +# Set the first UDP port +# A decimal number. +nsip.udp.port1: 2157 + +# Set the second UDP port +# A decimal number. +nsip.udp.port2: 19999 + +# NT Password (used to decrypt payloads) +# A string. +ntlmssp.nt_password: + +# Whether the OPSI dissector should desegment all messages spanning multiple TCP segments +# TRUE or FALSE (case-insensitive). +opsi.desegment_opsi_messages: TRUE + +# Reassemble fragmented P_Mul packets +# TRUE or FALSE (case-insensitive). +p_mul.reassemble: TRUE + +# Type of content in Data_PDU +# One of: No decoding, Compressed Data Type +# (case-insensitive). +p_mul.decode: No decoding + +# Used for transmission of Request_PDUs, Reject_PDUs and Release_PDUs betweenthe transmitters +# A decimal number. +p_mul.tport: 2751 + +# Used for transmission of Announce_PDUs to inform the receiver(s) +# A decimal number. +p_mul.rport: 2752 + +# Used for the data traffic from the transmitters to the receiver(s) +# A decimal number. +p_mul.dport: 2753 + +# Used for the data traffic from the receiver(s) to the transmitter +# A decimal number. +p_mul.aport: 2754 + +# The UDP port on which Packet Cable Lawful Intercept packets will be sent +# A decimal number. +pcli.udp_port: 9000 + +# Whether the dissector should put the internal PER data in the tree or if it should hide it +# TRUE or FALSE (case-insensitive). +per.display_internal_per_fields: FALSE + +# Whether to check the validity of the PGM checksum +# TRUE or FALSE (case-insensitive). +pgm.check_checksum: TRUE + +# PGM Encap is PGM packets encapsulated in UDP packets (Note: This option is off, i.e. port is 0, by default) +# A decimal number. +pgm.udp.encap_ucast_port: 0 + +# PGM Encap is PGM packets encapsulated in UDP packets (Note: This option is off, i.e. port is 0, by default) +# A decimal number. +pgm.udp.encap_mcast_port: 0 + +# Set the port for PGSQL messages (if different from the default of 5432) +# A decimal number. +pgsql.tcp.port: 5432 + +# Whether the PN-RT summary line should be shown in the protocol tree +# TRUE or FALSE (case-insensitive). +pn_rt.summary_in_tree: TRUE + +# The type of PPP frame checksum (none, 16-bit, 32-bit) +# One of: None, 16-Bit, 32-Bit +# (case-insensitive). +ppp.fcs_type: None + +# Whether Van Jacobson-compressed PPP frames should be decompressed +# TRUE or FALSE (case-insensitive). +ppp.decompress_vj: TRUE + +# Default Protocol ID to be used for PPPMuxCP +# A hexadecimal number. +ppp.default_proto_id: 0 + +# Show values of tags and lengths of data fields +# TRUE or FALSE (case-insensitive). +pppoed.show_tags_and_lengths: FALSE + +# Whether the PVFS dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +pvfs.desegment: TRUE + +# Whether the Q.931 dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +q931.desegment_h323_messages: TRUE + +# Reassemble segmented Q.931 messages (Q.931 - Annex H) +# TRUE or FALSE (case-insensitive). +q931.reassembly: TRUE + +# Set the UDP port for the Quake Server +# A decimal number. +quake.udp.port: 26000 + +# Set the UDP port for the Quake II Server +# A decimal number. +quake2.udp.port: 27910 + +# Set the UDP base port for the Quake III Arena Server +# A decimal number. +quake3.udp.arena_port: 27960 + +# Set the UDP base port for the Quake III Arena Master Server +# A decimal number. +quake3.udp.master_port: 27950 + +# Set the UDP port for the QuakeWorld Server +# A decimal number. +quakeworld.udp.port: 27500 + +# Shared secret used to decode User Passwords +# A string. +radius.shared_secret: + +# Whether to add or not to the tree the AVP's payload lenght +# TRUE or FALSE (case-insensitive). +radius.show_length: FALSE + +# An alternate UDP port to decode as RADIUS +# A decimal number. +radius.alternate_port: 0 + +# Where available, show which protocol and frame caused this RDT stream to be created +# TRUE or FALSE (case-insensitive). +rdt.show_setup_info: TRUE + +# Register a client UDP port for RDT traffic +# TRUE or FALSE (case-insensitive). +rdt.register_udp_port: FALSE + +# Set the UDP port for clients +# A decimal number. +rdt.default_udp_port: 6970 + +# Whether the RPC dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +rpc.desegment_rpc_over_tcp: TRUE + +# Whether the RPC dissector should defragment RPC-over-TCP messages. +# TRUE or FALSE (case-insensitive). +rpc.defragment_rpc_over_tcp: TRUE + +# Set the maximum size of RPCoverTCP PDUs. If the size field of the record marker is larger than this value it will not be considered a valid RPC PDU. +# A decimal number. +rpc.max_tcp_pdu_size: 262144 + +# Whether the RPC dissector should attempt to dissect RPC PDUs containing programs that are not known to Ethereal. This will make the heuristics significantly weaker and elevate the risk for falsely identifying and misdissecting packets significantly. +# TRUE or FALSE (case-insensitive). +rpc.dissect_unknown_programs: FALSE + +# Whether the RPC dissector should attempt to locate RPC PDU boundaries when initial fragment alignment is not known. This may cause false positives, or slow operation. +# TRUE or FALSE (case-insensitive). +rpc.find_fragment_start: FALSE + +# Specifies whether Ethereal should decode and display sub-messages within BUNDLE messages +# TRUE or FALSE (case-insensitive). +rsvp.process_bundle: TRUE + +# Set the TCP port for RSYNC messages +# A decimal number. +rsync.tcp_port: 873 + +# Whether the RSYNC dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +rsync.desegment: TRUE + +# Where available, show which protocol and frame caused this RTCP stream to be created +# TRUE or FALSE (case-insensitive). +rtcp.show_setup_info: TRUE + +# If call control SIP/H.323/RTSP/.. messages are missing in the trace, RTCP isn't decoded without this +# TRUE or FALSE (case-insensitive). +rtcp.heuristic_rtcp: FALSE + +# Try to work out network delay by comparing time between packets as captured and delays as seen by endpoint +# TRUE or FALSE (case-insensitive). +rtcp.show_roundtrip_calculation: FALSE + +# Minimum calculated roundtrip delay time in milliseconds that should be reported +# A decimal number. +rtcp.roundtrip_min_threshhold: 10 + +# Where available, show which protocol and frame caused this RTP stream to be created +# TRUE or FALSE (case-insensitive). +rtp.show_setup_info: TRUE + +# If call control SIP/H323/RTSP/.. messages are missing in the trace, RTP isn't decoded without this +# TRUE or FALSE (case-insensitive). +rtp.heuristic_rtp: FALSE + +# If an RTP version 0 packet is encountered, it can be treated as an invalid packet or a STUN packet +# One of: Invalid RTP packets, STUN packets +# (case-insensitive). +rtp.version0_type: Invalid RTP packets + +# This is the value of the Payload Type fieldthat specifies RTP Events +# A decimal number. +rtpevent.event_payload_type_value: 101 + +# Set the TCP port for RTSP messages +# A decimal number. +rtsp.tcp.port: 554 + +# Set the alternate TCP port for RTSP messages +# A decimal number. +rtsp.tcp.alternate_port: 8554 + +# Whether the RTSP dissector should reassemble headers of a request spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +rtsp.desegment_headers: TRUE + +# Whether the RTSP dissector should use the "Content-length:" value to desegment the body of a request spanning multiple TCP segments +# TRUE or FALSE (case-insensitive). +rtsp.desegment_body: TRUE + +# Whether the S5066 dissector should reassemble PDUs spanning multiple TCP segments. The default is to use reassembly. +# TRUE or FALSE (case-insensitive). +s5066.desegment_pdus: TRUE + +# Whether the S5066 dissector should dissect editon 1 of the STANAG. This editon was never formally approved and is very rare. The common edition is editon 1.2. +# TRUE or FALSE (case-insensitive). +s5066.edition_one: FALSE + +# NT Password (used to verify password changes) +# A string. +samr.nt_password: + +# The source point code (usually MSC) (to determine whether message is uplink or downlink) +# A hexadecimal number. +sccp.source_pc: 0 + +# Show parameter length in the protocol tree +# TRUE or FALSE (case-insensitive). +sccp.show_length: FALSE + +# When Target Cannot Be Identified, Decode SCSI Messages As +# One of: Block Device, Sequential Device +# (case-insensitive). +scsi.decode_scsi_messages_as: Block Device + +# Show source and destination port numbers in the protocol tree +# TRUE or FALSE (case-insensitive). +sctp.show_port_numbers_in_tree: TRUE + +# The type of checksum used in SCTP packets +# One of: None, Adler 32, CRC 32c, Automatic +# (case-insensitive). +sctp.checksum: CRC 32c + +# Show always SCTP control chunks in the Info column +# TRUE or FALSE (case-insensitive). +sctp.show_always_control_chunks: TRUE + +# Try to decode a packet using an heuristic sub-dissector before using a sub-dissector registered to a specific port or PPI +# TRUE or FALSE (case-insensitive). +sctp.try_heuristic_first: FALSE + +# Set UDP port 1 for SigComp messages +# A decimal number. +sigcomp.udp.port: 5555 + +# Set UDP port 2 for SigComp messages +# A decimal number. +sigcomp.udp.port2: 6666 + +# Set TCP port 1 for SigComp messages +# A decimal number. +sigcomp.tcp.port: 5555 + +# Set TCP port 2 for SigComp messages +# A decimal number. +sigcomp.tcp.port2: 6666 + +# Preference wether to Dissect the UDVM code or not +# TRUE or FALSE (case-insensitive). +sigcomp.display.udvm.code: TRUE + +# preference wether to display the bytecode in UDVM operands or not +# TRUE or FALSE (case-insensitive). +sigcomp.display.bytecode: FALSE + +# preference wether to decompress message or not +# TRUE or FALSE (case-insensitive). +sigcomp.decomp.msg: TRUE + +# preference wether to display the decompressed message as raw text or not +# TRUE or FALSE (case-insensitive). +sigcomp.display.decomp.msg.as.txt: FALSE + +# 0 = UDVM executes silently, then incrising detail about execution of UDVM instructions, Warning! CPU intense at high detail +# One of: No-Printout, Low-detail, medium-detail, High-detail +# (case-insensitive). +sigcomp.show.udvm.execution: No-Printout + +# Specifies that the raw text of the SIP message should be displayed in addition to the dissection tree +# TRUE or FALSE (case-insensitive). +sip.display_raw_text: FALSE + +# If enabled, only SIP/2.0 traffic will be dissected as SIP. Disable it to allow SIP traffic with a different version to be dissected as SIP. +# TRUE or FALSE (case-insensitive). +sip.strict_sip_version: TRUE + +# Whether the SIP dissector should reassemble headers of a request spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +sip.desegment_headers: TRUE + +# Whether the SIP dissector should use the "Content-length:" value, if present, to reassemble the body of a request spanning multiple TCP segments, and reassemble chunked data spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +sip.desegment_body: TRUE + +# Whether the SCCP dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +skinny.desegment: TRUE + +# Whether the SoulSeek dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +slsk.desegment: TRUE + +# Whether the SoulSeek dissector should decompress all zlib compressed packets inside messages +# TRUE or FALSE (case-insensitive). +slsk.decompress: TRUE + +# Whether the dissector should reassemble the payload of SMB Transaction commands spanning multiple SMB PDUs +# TRUE or FALSE (case-insensitive). +smb.trans_reassembly: TRUE + +# Whether the dissector should reassemble DCERPC over SMB commands +# TRUE or FALSE (case-insensitive). +smb.dcerpc_reassembly: TRUE + +# Whether the dissector should snoop SMB and related CIFS protocols to discover and display Names associated with SIDs +# TRUE or FALSE (case-insensitive). +smb.sid_name_snooping: FALSE + +# Whether the SMPP dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +smpp.reassemble_smpp_over_tcp: TRUE + +# Whether the SMTP dissector should reassemble command and response lines spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +smtp.desegment_lines: TRUE + +# Whether fragmented BIUs should be reassembled +# TRUE or FALSE (case-insensitive). +sna.defragment: TRUE + +# Whether the SNMP OID should be shown in the info column +# TRUE or FALSE (case-insensitive). +snmp.display_oid: TRUE + +# List of MIB modules to load (the list is set to environment variable MIBS if the variable is not already set)The list must be separated by colons (:) on non-Windows systems and semicolons (;) on Windows systems +# A string. +snmp.mib_modules: IP-MIB:IF-MIB:TCP-MIB:UDP-MIB:SNMPv2-MIB:RFC1213-MIB:UCD-SNMP-MIB + +# Whether the SNMP dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +snmp.desegment: TRUE + +# Whether the SRVLOC dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +srvloc.desegment_tcp: TRUE + +# Set the UDP port for SSCOP messages encapsulated in UDP (0 to disable) +# A string denoting an positive integer range (e.g., "1-20,30-40"). +sscop.udp.ports: + +# SSCOP payload (dissector to call on SSCOP payload) +# One of: Data (no further dissection), Q.2931, SSCF-NNI (MTP3-b) +# (case-insensitive). +sscop.payload: Q.2931 + +# Whether the SSH dissector should reassemble SSH buffers spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +ssh.desegment_buffers: TRUE + +# Whether the SSL dissector should reassemble SSL records spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +ssl.desegment_ssl_records: TRUE + +# Version used by Ethereal +# One of: Internet Draft version 08, RFC 3868 +# (case-insensitive). +sua.version: RFC 3868 + +# Whether the T.38 dissector should decode using the Pre-Corrigendum T.38 ASN.1 specification (1998). +# TRUE or FALSE (case-insensitive). +t38.use_pre_corrigendum_asn1_specification: TRUE + +# Whether a UDP packet that looks like RTP version 2 packet will be dissected as RTP packet or T.38 packet. If enabled there is a risk that T.38 UDPTL packets with sequence number higher than 32767 may be dissected as RTP. +# TRUE or FALSE (case-insensitive). +t38.dissect_possible_rtpv2_packets_as_rtp: FALSE + +# Set the TCP port for T.38 messages +# A decimal number. +t38.tcp.port: 6004 + +# Set the UDP port for T.38 messages +# A decimal number. +t38.udp.port: 6004 + +# Whether the dissector should reassemble T.38 PDUs spanning multiple TCP segments when TPKT is used over TCP. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +t38.reassembly: TRUE + +# Whether T.38 is used with TPKT for TCP +# One of: Never, Always, Maybe +# (case-insensitive). +t38.tpkt_usage: Maybe + +# Where available, show which protocol and frame caused this T.38 stream to be created +# TRUE or FALSE (case-insensitive). +t38.show_setup_info: TRUE + +# TACACS+ Encryption Key +# A string. +tacplus.key: + +# Whether the TALI dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +tali.reassemble: TRUE + +# SCCP (and SUA) SSNs to decode as TCAP +# A string denoting an positive integer range (e.g., "1-20,30-40"). +tcap.ssn: + +# Whether the TCP summary line should be shown in the protocol tree +# TRUE or FALSE (case-insensitive). +tcp.summary_in_tree: TRUE + +# Whether to validate the TCP checksum +# TRUE or FALSE (case-insensitive). +tcp.check_checksum: TRUE + +# Whether subdissector can request TCP streams to be reassembled +# TRUE or FALSE (case-insensitive). +tcp.desegment_tcp_streams: TRUE + +# Make the TCP dissector analyze TCP sequence numbers to find and flag segment retransmissions, missing segments and RTT +# TRUE or FALSE (case-insensitive). +tcp.analyze_sequence_numbers: TRUE + +# Make the TCP dissector use relative sequence numbers instead of absolute ones. To use this option you must also enable "Analyze TCP sequence numbers". This option will also try to track and adjust the window field according to any TCP window scaling options seen. +# TRUE or FALSE (case-insensitive). +tcp.relative_sequence_numbers: TRUE + +# Try to decode a packet using an heuristic sub-dissector before using a sub-dissector registered to a specific port +# TRUE or FALSE (case-insensitive). +tcp.try_heuristic_first: FALSE + +# Whether the TDS dissector should reassemble TDS buffers spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +tds.desegment_buffers: TRUE + +# Whether the TDS dissector should defragment messages spanning multiple Netlib buffers +# TRUE or FALSE (case-insensitive). +tds.defragment: TRUE + +# Hint as to version of TDS protocol being decoded +# One of: Not Specified, TDS 4, TDS 5, TDS 7, TDS 8 +# (case-insensitive). +tds.protocol_type: Not Specified + +# Hint as to whether to decode TDS protocol as little-endian or big-endian. (TDS7/8 always decoded as little-endian) +# One of: Little Endian, Big Endian +# (case-insensitive). +tds.endian_type: Little Endian + +# Additional TCP ports to decode as TDS +# A string denoting an positive integer range (e.g., "1-20,30-40"). +tds.tcp_ports: + +# Check this to decode IPv6 traffic between Teredo clients and relays +# TRUE or FALSE (case-insensitive). +teredo.heuristic_teredo: FALSE + +# Whether SEGMENTATION_MANAGER datagrams should be reassembled +# TRUE or FALSE (case-insensitive). +tipc.defragment: TRUE + +# Whether to try to dissect TIPC data or not +# TRUE or FALSE (case-insensitive). +tipc.dissect_tipc_data: FALSE + +# Whether the TNS dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +tns.desegment_tns_messages: TRUE + +# Whether the TPKT dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +tpkt.desegment: TRUE + +# Whether Linux mangling of the link-layer header should be checked for and worked around +# TRUE or FALSE (case-insensitive). +tr.fix_linux_botches: FALSE + +# Whether the UDP summary line should be shown in the protocol tree +# TRUE or FALSE (case-insensitive). +udp.summary_in_tree: TRUE + +# Try to decode a packet using an heuristic sub-dissector before using a sub-dissector registered to a specific port +# TRUE or FALSE (case-insensitive). +udp.try_heuristic_first: FALSE + +# Ignore an invalid checksum coverage field and continue dissection +# TRUE or FALSE (case-insensitive). +udplite.ignore_checksum_coverage: TRUE + +# Set the TCP port1 for Unlicensed Mobile Access messages +# A decimal number. +uma.tcp.port1: 14001 + +# Data Link Type +# One of: Disabled, User 0 (DLT=147 WTAP_ENCAP=45), User 1 (DLT=148 WTAP_ENCAP=46), User 2 (DLT=149 WTAP_ENCAP=47), User 3 (DLT=150 WTAP_ENCAP=48), User 4 (DLT=151 WTAP_ENCAP=49), User 5 (DLT=152 WTAP_ENCAP=50), User 6 (DLT=153 WTAP_ENCAP=51), User 7 (DLT=154 WTAP_ENCAP=52), User 8 (DLT=155 WTAP_ENCAP=53), User 9 (DLT=156 WTAP_ENCAP=54), User 10 (DLT=157 WTAP_ENCAP=55), User 11 (DLT=158 WTAP_ENCAP=56), User 12 (DLT=159 WTAP_ENCAP=57), User 13 (DLT=160 WTAP_ENCAP=58), User 14 (DLT=161 WTAP_ENCAP=59), User 15 (DLT=162 WTAP_ENCAP=60) +# (case-insensitive). +user_dlt_a.dlt: Disabled + +# +# One of: No encpsulation, SSCOP +# (case-insensitive). +user_dlt_a.special_encap: No encpsulation + +# Payload +# A string. +user_dlt_a.payload: + +# The size (in octets) of the Header +# A decimal number. +user_dlt_a.header_size: 0 + +# The size (in octets) of the Trailer +# A decimal number. +user_dlt_a.trailer_size: 0 + +# Header Protocol (used only when ecapsulation is not given) +# A string. +user_dlt_a.header_proto: + +# Trailer Protocol (used only when ecapsulation is not given) +# A string. +user_dlt_a.trailer_proto: + +# Data Link Type +# One of: Disabled, User 0 (DLT=147 WTAP_ENCAP=45), User 1 (DLT=148 WTAP_ENCAP=46), User 2 (DLT=149 WTAP_ENCAP=47), User 3 (DLT=150 WTAP_ENCAP=48), User 4 (DLT=151 WTAP_ENCAP=49), User 5 (DLT=152 WTAP_ENCAP=50), User 6 (DLT=153 WTAP_ENCAP=51), User 7 (DLT=154 WTAP_ENCAP=52), User 8 (DLT=155 WTAP_ENCAP=53), User 9 (DLT=156 WTAP_ENCAP=54), User 10 (DLT=157 WTAP_ENCAP=55), User 11 (DLT=158 WTAP_ENCAP=56), User 12 (DLT=159 WTAP_ENCAP=57), User 13 (DLT=160 WTAP_ENCAP=58), User 14 (DLT=161 WTAP_ENCAP=59), User 15 (DLT=162 WTAP_ENCAP=60) +# (case-insensitive). +user_dlt_b.dlt: Disabled + +# +# One of: No encpsulation, SSCOP +# (case-insensitive). +user_dlt_b.special_encap: No encpsulation + +# Payload +# A string. +user_dlt_b.payload: + +# The size (in octets) of the Header +# A decimal number. +user_dlt_b.header_size: 0 + +# The size (in octets) of the Trailer +# A decimal number. +user_dlt_b.trailer_size: 0 + +# Header Protocol (used only when ecapsulation is not given) +# A string. +user_dlt_b.header_proto: + +# Trailer Protocol (used only when ecapsulation is not given) +# A string. +user_dlt_b.trailer_proto: + +# Data Link Type +# One of: Disabled, User 0 (DLT=147 WTAP_ENCAP=45), User 1 (DLT=148 WTAP_ENCAP=46), User 2 (DLT=149 WTAP_ENCAP=47), User 3 (DLT=150 WTAP_ENCAP=48), User 4 (DLT=151 WTAP_ENCAP=49), User 5 (DLT=152 WTAP_ENCAP=50), User 6 (DLT=153 WTAP_ENCAP=51), User 7 (DLT=154 WTAP_ENCAP=52), User 8 (DLT=155 WTAP_ENCAP=53), User 9 (DLT=156 WTAP_ENCAP=54), User 10 (DLT=157 WTAP_ENCAP=55), User 11 (DLT=158 WTAP_ENCAP=56), User 12 (DLT=159 WTAP_ENCAP=57), User 13 (DLT=160 WTAP_ENCAP=58), User 14 (DLT=161 WTAP_ENCAP=59), User 15 (DLT=162 WTAP_ENCAP=60) +# (case-insensitive). +user_dlt_c.dlt: Disabled + +# +# One of: No encpsulation, SSCOP +# (case-insensitive). +user_dlt_c.special_encap: No encpsulation + +# Payload +# A string. +user_dlt_c.payload: + +# The size (in octets) of the Header +# A decimal number. +user_dlt_c.header_size: 0 + +# The size (in octets) of the Trailer +# A decimal number. +user_dlt_c.trailer_size: 0 + +# Header Protocol (used only when ecapsulation is not given) +# A string. +user_dlt_c.header_proto: + +# Trailer Protocol (used only when ecapsulation is not given) +# A string. +user_dlt_c.trailer_proto: + +# Data Link Type +# One of: Disabled, User 0 (DLT=147 WTAP_ENCAP=45), User 1 (DLT=148 WTAP_ENCAP=46), User 2 (DLT=149 WTAP_ENCAP=47), User 3 (DLT=150 WTAP_ENCAP=48), User 4 (DLT=151 WTAP_ENCAP=49), User 5 (DLT=152 WTAP_ENCAP=50), User 6 (DLT=153 WTAP_ENCAP=51), User 7 (DLT=154 WTAP_ENCAP=52), User 8 (DLT=155 WTAP_ENCAP=53), User 9 (DLT=156 WTAP_ENCAP=54), User 10 (DLT=157 WTAP_ENCAP=55), User 11 (DLT=158 WTAP_ENCAP=56), User 12 (DLT=159 WTAP_ENCAP=57), User 13 (DLT=160 WTAP_ENCAP=58), User 14 (DLT=161 WTAP_ENCAP=59), User 15 (DLT=162 WTAP_ENCAP=60) +# (case-insensitive). +user_dlt_d.dlt: Disabled + +# +# One of: No encpsulation, SSCOP +# (case-insensitive). +user_dlt_d.special_encap: No encpsulation + +# Payload +# A string. +user_dlt_d.payload: + +# The size (in octets) of the Header +# A decimal number. +user_dlt_d.header_size: 0 + +# The size (in octets) of the Trailer +# A decimal number. +user_dlt_d.trailer_size: 0 + +# Header Protocol (used only when ecapsulation is not given) +# A string. +user_dlt_d.header_proto: + +# Trailer Protocol (used only when ecapsulation is not given) +# A string. +user_dlt_d.trailer_proto: + +# Enable this preference if you want to view the WBXML tokens without the representation in a media type (e.g., WML). Tokens will show up as Tag_0x12, attrStart_0x08 or attrValue_0x0B for example. +# TRUE or FALSE (case-insensitive). +wbxml.skip_wbxml_token_mapping: FALSE + +# Enable this preference if you want to skip the parsing of the WBXML tokens that constitute the body of the WBXML document. Only the WBXML header will be dissected (and visualized) then. +# TRUE or FALSE (case-insensitive). +wbxml.disable_wbxml_token_parsing: FALSE + +# Whether the WINS-Replication dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +winsrepl.reassemble: TRUE + +# Whether fragmented 802.11 datagrams should be reassembled +# TRUE or FALSE (case-insensitive). +wlan.defragment: TRUE + +# Some 802.11 cards include the FCS at the end of a packet, others do not. +# TRUE or FALSE (case-insensitive). +wlan.check_fcs: FALSE + +# Some 802.11 cards leave the WEP bit set even though the packet is decrypted. +# TRUE or FALSE (case-insensitive). +wlan.ignore_wep: FALSE + +# How many WEP keys do we have to choose from? (0 to disable, up to 4) +# One of: 0, 1, 2, 3, 4 +# (case-insensitive). +wlan.wep_keys: 0 + +# First WEP key (A:B:C:D:E) [40bit], (A:B:C:D:E:F:G:H:I:J:K:L:M) [104bit], or whatever key length you're using +# A string. +wlan.wep_key1: + +# Second WEP key (A:B:C:D:E) [40bit], (A:B:C:D:E:F:G:H:I:J:K:L:M) [104bit], or whatever key length you're using +# A string. +wlan.wep_key2: + +# Third WEP key (A:B:C:D:E) [40bit], (A:B:C:D:E:F:G:H:I:J:K:L:M) [104bit], or whatever key length you're using +# A string. +wlan.wep_key3: + +# Fourth WEP key (A:B:C:D:E) [40bit] (A:B:C:D:E:F:G:H:I:J:K:L:M) [104bit], or whatever key length you're using +# A string. +wlan.wep_key4: + +# If CALL REQUEST not seen or didn't specify protocol, dissect as QLLC/SNA +# TRUE or FALSE (case-insensitive). +x.25.payload_is_qllc_sna: FALSE + +# Reassemble fragmented X.25 packets +# TRUE or FALSE (case-insensitive). +x.25.reassemble: TRUE + +# Whether the X11 dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +x11.desegment: TRUE + +# Whether the X.25-over-TCP dissector should reassemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +xot.desegment: TRUE + +# Whether the YMSG dissector should reasssemble messages spanning multiple TCP segments. To use this option, you must also enable "Allow subdissectors to reassemble TCP streams" in the TCP protocol settings. +# TRUE or FALSE (case-insensitive). +ymsg.desegment: TRUE diff --git a/conf_slk120/ethereal/.ethereal/recent b/conf_slk120/ethereal/.ethereal/recent index 0d2e162..4905b30 100644 --- a/conf_slk120/ethereal/.ethereal/recent +++ b/conf_slk120/ethereal/.ethereal/recent @@ -5,19 +5,15 @@ ######## Recent capture files (latest last), cannot be altered through command line ######## +recent.capture_file: /tmp/cu/log_ibm/tcpdump_pc +recent.capture_file: /tmp/cu/mem_leak/cap.cap +recent.capture_file: /tmp/cu/pack/vlan ######## Recent capture filters (latest last), cannot be altered through command line ######## ######## Recent display filters (latest last), cannot be altered through command line ######## -recent.display_filter: (ip.addr eq 222.92.90.185 and ip.addr eq 192.168.1.41) and (tcp.port eq 25 and tcp.port eq 45080) -recent.display_filter: (ip.addr eq 192.168.1.41 and ip.addr eq 222.92.90.185) and (tcp.port eq 55949 and tcp.port eq 25) -recent.display_filter: (ip.addr eq 209.85.199.109 and ip.addr eq 192.168.1.41) and (tcp.port eq 995 and tcp.port eq 60544) -recent.display_filter: (ip.addr eq 192.168.1.41 and ip.addr eq 209.85.199.109) and (tcp.port eq 48591 and tcp.port eq 587) -recent.display_filter: (ip.addr eq 209.85.147.111 and ip.addr eq 172.21.6.56) and (tcp.port eq 995 and tcp.port eq 59554) -recent.display_filter: (ip.addr eq 209.85.199.109 and ip.addr eq 172.21.6.56) and (tcp.port eq 587 and tcp.port eq 53935) -recent.display_filter: (ip.addr eq 209.85.199.111 and ip.addr eq 172.21.6.56) and (tcp.port eq 995 and tcp.port eq 38564) # Main Toolbar show (hide). # TRUE or FALSE (case-insensitive). @@ -63,8 +59,8 @@ gui.zoom_level: 0 # Decimal numbers. gui.geometry_main_x: 20 gui.geometry_main_y: 20 -gui.geometry_main_width: 909 -gui.geometry_main_height: 608 +gui.geometry_main_width: 966 +gui.geometry_main_height: 677 # Main window maximized (GTK2 only!). # TRUE or FALSE (case-insensitive). @@ -73,14 +69,17 @@ gui.geometry_main_maximized: FALSE # Main window upper (or leftmost) pane size. # (GTK1: has no effect here, command line -o usage only). # Decimal number. -gui.geometry_main_upper_pane: 280 +gui.geometry_main_upper_pane: 225 # Main window middle pane size. # (GTK1: has no effect here, command line -o usage only). # Decimal number. -gui.geometry_main_lower_pane: 115 +gui.geometry_main_lower_pane: 213 # Statusbar left pane size. # (GTK1: has no effect here, command line -o usage only). # Decimal number. -gui.geometry_status_pane: 452 +gui.geometry_status_pane: 480 + +# Last directory navigated to in File Open dialog. +gui.fileopen_remembered_dir: /tmp/cu/pack/ diff --git a/conf_slk120/ethereal/Makefile b/conf_slk120/ethereal/Makefile index f84cdc2..3eb4c12 100644 --- a/conf_slk120/ethereal/Makefile +++ b/conf_slk120/ethereal/Makefile @@ -1,9 +1,7 @@ -DIRS= .ethereal -help: - @echo -e "subdir:\n $(SUBDIR)\n" +all: + ${LN} ${TOP}/ethereal/.ethereal ~/.ethereal + +del: + ${RM} ~/.ethereal -install: - @$(CP) $(DIRS) $(ARROW) -chown: - for _FILE in $(FILES); do $(CHOWN) $(WHOOWN) $(ARROW)/$${_FILE}; done diff --git a/conf_slk120/fonts/Makefile b/conf_slk120/fonts/Makefile dissimilarity index 99% index ee422d4..ae84f4f 100644 --- a/conf_slk120/fonts/Makefile +++ b/conf_slk120/fonts/Makefile @@ -1,9 +1,15 @@ -FILES= cjk.conf fonts.conf local.conf msttcorefonts.conf - -help: - @echo -e "subdir:\n $(SUBDIR)\n" - -install: - @$(CP) $(FILES) $(ROOT)/etc/fonts/ -chown: - for _FILE in $(FILES); do $(CHOWN) $(WHOOWN) $(ROOT)/etc/fonts/$${_FILE}; done + +all: + sudo ${LN} ${TOP}/fonts/85-wqy-bitmapsong.conf /etc/fonts/85-wqy-bitmapsong.conf + sudo ${LN} ${TOP}/fonts/cjk.conf /etc/fonts/cjk.conf + sudo ${LN} ${TOP}/fonts/fonts.conf /etc/fonts/fonts.conf + sudo ${LN} ${TOP}/fonts/local.conf /etc/fonts/local.conf + sudo ${LN} ${TOP}/fonts/msttcorefonts.conf /etc/fonts/msttcorefonts.conf + ${ECHO} "!! NEED INSTALL xorg.conf MANUAL" + +del: + sudo ${RM} /etc/fonts/85-wqy-bitmapsong.conf + sudo ${RM} /etc/fonts/cjk.conf + sudo ${RM} /etc/fonts/fonts.conf + sudo ${RM} /etc/fonts/local.conf + sudo ${RM} /etc/fonts/msttcorefonts.conf diff --git a/conf_slk120/fvwm/Makefile b/conf_slk120/fvwm/Makefile new file mode 100644 index 0000000..a7d8210 --- /dev/null +++ b/conf_slk120/fvwm/Makefile @@ -0,0 +1,6 @@ + +all: + ${LN} ${TOP}/fvwm ~/.fvwm + +del: + ${RM} ~/.fvwm diff --git a/conf_slk120/fvwm/fvwm b/conf_slk120/fvwm/fvwm new file mode 120000 index 0000000..6ddc4f5 --- /dev/null +++ b/conf_slk120/fvwm/fvwm @@ -0,0 +1 @@ +/work/git.arrow/conf_slk120/fvwm/fvwm \ No newline at end of file diff --git a/conf_slk120/galculator/Makefile b/conf_slk120/galculator/Makefile new file mode 100644 index 0000000..73b6bc6 --- /dev/null +++ b/conf_slk120/galculator/Makefile @@ -0,0 +1,6 @@ + +all: + ${LN} ${TOP}/galculator/.galculator ~/.galculator + +del: + ${RM} ~/.galculator diff --git a/conf_slk120/git/Makefile b/conf_slk120/git/Makefile index e99e4e0..bfe47e4 100644 --- a/conf_slk120/git/Makefile +++ b/conf_slk120/git/Makefile @@ -1,4 +1,6 @@ -help: - @echo -e "subdir:\n $(SUBDIR)\n" -install: +all: + ${ECHO} "!! git hook install manual" + +del: + ${ECHO} "git no del" diff --git a/conf_slk120/grub/Makefile b/conf_slk120/grub/Makefile new file mode 100644 index 0000000..ab774d2 --- /dev/null +++ b/conf_slk120/grub/Makefile @@ -0,0 +1,5 @@ + +all: + ${ECHO} "grub no install" +del: + ${ECHO} "grub no del" diff --git a/conf_slk120/gtk/Makefile b/conf_slk120/gtk/Makefile index 5821aa0..80a83e7 100644 --- a/conf_slk120/gtk/Makefile +++ b/conf_slk120/gtk/Makefile @@ -1,11 +1,7 @@ -GTK_V1:=gtkrc.zh_CN -GTK_V2:=gtkrc -help: - @echo -e "subdir:\n $(SUBDIR)\n" -install: - @$(CP) $(GTK_V1) $(ROOT)/etc/gtk/ - @$(CP) $(GTK_V2) $(ROOT)/etc/gtk-2.0/ -chown: - $(CHOWN) $(WHOOWN) $(ROOT)/etc/gtk/$(GTK_V1) - $(CHOWN) $(WHOOWN) $(ROOT)/etc/gtk-2.0/$(GTK_V2) +all: + sudo $(LN) ${TOP}/gtk/gtkrc /etc/gtk-2.0/gtkrc + sudo $(LN) ${TOP}/gtk/gtkrc.zh_CN /etc/gtk/gtkrc.zh_CN +del: + sudo $(RM) /etc/gtk-2.0/gtkrc + sudo $(RM) /etc/gtk/gtkrc.zh_CN diff --git a/conf_slk120/http/Makefile b/conf_slk120/http/Makefile new file mode 100644 index 0000000..ecc1695 --- /dev/null +++ b/conf_slk120/http/Makefile @@ -0,0 +1,6 @@ + +all: + ${ECHO} "http no install" + +del: + ${ECHO} "http no del" diff --git a/conf_slk120/indent/.indent.pro b/conf_slk120/indent/.indent.pro new file mode 100755 index 0000000..acf678c --- /dev/null +++ b/conf_slk120/indent/.indent.pro @@ -0,0 +1 @@ +-npro -kr -i8 -ts8 -sob -l100 -ss -ncs diff --git a/conf_slk120/indent/Makefile b/conf_slk120/indent/Makefile new file mode 100644 index 0000000..a2adc7c --- /dev/null +++ b/conf_slk120/indent/Makefile @@ -0,0 +1,6 @@ + +all: + ${LN} ${TOP}/indent/.indent.pro ~/.indent.pro + +del: + ${RM} ~/.indent.pro diff --git a/conf_slk120/inetd/Makefile b/conf_slk120/inetd/Makefile new file mode 100644 index 0000000..99af3a0 --- /dev/null +++ b/conf_slk120/inetd/Makefile @@ -0,0 +1,7 @@ + +all: + sudo ${LN} ${TOP}/inetd/inetd.conf /etc/inetd.conf + +del: + sudo ${RM} /etc/inetd.conf + diff --git a/conf_slk120/latex/Makefile b/conf_slk120/latex/Makefile new file mode 100644 index 0000000..f38c81a --- /dev/null +++ b/conf_slk120/latex/Makefile @@ -0,0 +1,6 @@ + +all: + ${LN} ${TOP}/latex/.latex2html-init ~/.latex2html-init + +del: + ${RM} ~/.latex2html-init diff --git a/conf_slk120/mail/Makefile b/conf_slk120/mail/Makefile index 955d078..f842975 100644 --- a/conf_slk120/mail/Makefile +++ b/conf_slk120/mail/Makefile @@ -1,12 +1,10 @@ -FILES= .fetchmailrc .muttrc -CONF= ssmtp.conf -help: - @echo -e "subdir:\n $(SUBDIR)\n" +all: + ${LN} ${TOP}/mail/.fetchmailrc ~/.fetchmailrc + ${LN} ${TOP}/bash/.muttrc ~/.muttrc + sudo ${LN} ${TOP}/bash/ssmtp.conf /usr/local/etc/ssmtp/ssmtp.conf -install: - @$(CP) $(FILES) $(ARROW) - @$(CP) $(CONF) $(ROOT)/usr/local/etc/ssmtp/ -chown: - for _FILE in $(FILES); do $(CHOWN) $(WHOOWN) $(ARROW)/$${_FILE}; done - $(CHOWN) $(WHOOWN) $(ROOT)/usr/local/etc/ssmtp/$(CONF) +del: + ${RM} ~/.fetchmailrc + ${RM} ~/.muttrc + sudo ${RM} /usr/local/etc/ssmtp/ssmtp.conf diff --git a/conf_slk120/mail/ssmtp.conf b/conf_slk120/mail/ssmtp.conf index 538cc4d..549b864 100644 --- a/conf_slk120/mail/ssmtp.conf +++ b/conf_slk120/mail/ssmtp.conf @@ -6,7 +6,7 @@ AuthUser=arrowworld@gmail.com # AuthPass=mn rewriteDomain=gmail.com FromLineOverride=YES -hostname=darkstar.example.net +hostname=gmail.com # Set this to never rewrite the "From:" line (unless not given) and to # use that address in the "from line" of the envelope. #FromLineOverride=YES diff --git a/conf_slk120/mplayer/Makefile b/conf_slk120/mplayer/Makefile new file mode 100644 index 0000000..d3c9d2d --- /dev/null +++ b/conf_slk120/mplayer/Makefile @@ -0,0 +1,6 @@ + +all: + ${LN} ${TOP}/mplayer/config ~/.mplayer/config + +del: + ${RM} ~/.mplayer/config diff --git a/conf_slk120/rest/Makefile b/conf_slk120/rest/Makefile index 6217163..e3e086b 100644 --- a/conf_slk120/rest/Makefile +++ b/conf_slk120/rest/Makefile @@ -1,8 +1,6 @@ -FILES= .arrowwrite -help: - @echo -e "subdir:\n $(SUBDIR)\n" -install: - @$(CP) $(FILES) $(ARROW) -chown: - for _FILE in $(FILES); do $(CHOWN) $(WHOOWN) $(ARROW)/$${_FILE}; done +all: + ${LN} ${TOP}/reset/.arrowwrite ~/.arrowwrite + +del: + ${RM} ~/.arrowwrite diff --git a/conf_slk120/scim/.scim/config b/conf_slk120/scim/.scim/config index 494898c..e95c35f 100644 --- a/conf_slk120/scim/.scim/config +++ b/conf_slk120/scim/.scim/config @@ -1,37 +1,52 @@ /DefaultIMEngineFactory/zh_CN = 98e4ca3b-8321-4903-a59d-84abce22f95a /FrontEnd/ChangeFactoryGlobally = false -/FrontEnd/OnTheSpot = true +/FrontEnd/OnTheSpot = false +/FrontEnd/SharedInputMethod = false /FrontEnd/Socket/ConfigReadOnly = false /FrontEnd/Socket/MaxClients = 512 /FrontEnd/X11/BrokenWchar = true /FrontEnd/X11/Dynamic = false /FrontEnd/X11/OnTheSpot = true /FrontEnd/X11/ServerName = SCIM -/Hotkeys/FrontEnd/NextFactory = Control+Alt+Down,Shift+Control+KeyRelease+Shift_L,Shift+Control+KeyRelease+Shift_R -/Hotkeys/FrontEnd/PreviousFactory = Control+Alt+Up,Shift+Control+KeyRelease+Control_L,Shift+Control+KeyRelease+Control_R -/Hotkeys/FrontEnd/ShowFactoryMenu = Control+Alt+Right +/Hotkeys/FrontEnd/NextFactory = +/Hotkeys/FrontEnd/Off = +/Hotkeys/FrontEnd/On = +/Hotkeys/FrontEnd/PreviousFactory = +/Hotkeys/FrontEnd/ShowFactoryMenu = /Hotkeys/FrontEnd/Trigger = Control+space -/Hotkeys/FrontEnd/ValidKeyMask = Shift+Control+Alt+CapsLock+Meta +/Hotkeys/FrontEnd/ValidKeyMask = Shift+Control+Alt+CapsLock+Meta+QuirkKanaRo /IMEngine/RawCode/Locales = default +/IMEngine/Table/AddPhraseKey = +/IMEngine/Table/DeletePhraseKey = +/IMEngine/Table/FullWidthLetterKey = +/IMEngine/Table/FullWidthPunctKey = +/IMEngine/Table/LongPhraseFirst = false +/IMEngine/Table/ModeSwitchKey = +/IMEngine/Table/ShowKeyHint = false +/IMEngine/Table/ShowPrompt = false +/IMEngine/Table/UserPhraseFirst = false +/IMEngine/Table/UserTableBinary = false /Panel/Gtk/Color/ActiveBackground = light sky blue /Panel/Gtk/Color/ActiveText = black /Panel/Gtk/Color/NormalBackground = #F7F3F7 /Panel/Gtk/Color/NormalText = black /Panel/Gtk/DefaultSticked = false -/Panel/Gtk/Font = default +/Panel/Gtk/Font = WenQuanYi Bitmap Song 10 /Panel/Gtk/LookupTableEmbedded = true /Panel/Gtk/LookupTableVertical = false /Panel/Gtk/ShowStatusBox = false -/Panel/Gtk/ShowTrayIcon = true -/Panel/Gtk/ToolBar/AlwaysShow = false -/Panel/Gtk/ToolBar/AutoSnap = true +/Panel/Gtk/ShowTrayIcon = false +/Panel/Gtk/ToolBar/AlwaysHidden = false +/Panel/Gtk/ToolBar/AlwaysShow = true +/Panel/Gtk/ToolBar/AutoSnap = false /Panel/Gtk/ToolBar/HideTimeout = 2 -/Panel/Gtk/ToolBar/POS_X = 772 -/Panel/Gtk/ToolBar/POS_Y = 708 +/Panel/Gtk/ToolBar/POS_X = 568 +/Panel/Gtk/ToolBar/POS_Y = 0 /Panel/Gtk/ToolBar/ShowFactoryIcon = true /Panel/Gtk/ToolBar/ShowFactoryName = true -/Panel/Gtk/ToolBar/ShowHelpIcon = true +/Panel/Gtk/ToolBar/ShowHelpIcon = false /Panel/Gtk/ToolBar/ShowMenuIcon = true +/Panel/Gtk/ToolBar/ShowPropertyLabel = true /Panel/Gtk/ToolBar/ShowSetupIcon = true /Panel/Gtk/ToolBar/ShowStickIcon = false -/UpdateTimeStamp = 1188996811:208868 +/UpdateTimeStamp = 1209656306:192893 diff --git a/conf_slk120/scim/.scim/global b/conf_slk120/scim/.scim/global dissimilarity index 91% index a2d4af6..9fb3b64 100644 --- a/conf_slk120/scim/.scim/global +++ b/conf_slk120/scim/.scim/global @@ -1 +1,2 @@ -/DisabledIMEngineFactories = c6bebc27-6324-4b77-8ad4-6d41dcaf2e08,856f06f6-8c57-49d3-8a96-7a5a34023624,d11869f8-04a1-405e-9169-c2660bac0531,b01beb4c-c1ba-4cb5-afb7-d21a9372a231,bdc9e235-bbef-457a-812b-81183de38fbd,424467b4-f967-4173-adac-805b215c2048,2201dce9-230b-4e10-af21-f161d1b6d433,61e81c56-4333-4ef8-bcd1-348ba73226a0,63052466-826f-49d4-a0c1-be7e1f4e0bf9,61ea7bfd-d62a-4dd6-842a-c7f91db5d6ff,d6468711-00e1-47a9-bc4d-a3efe64ccd9c,67ace272-edb7-4828-a993-624c3ffb8891,bac0fe2f-3c3e-45c5-92d9-18924e098751,9cf368db-cf13-4b3b-bffc-660f10b1923c,674e02fd-6614-47c0-bbbf-b95e2f28640f,d1c60e07-7769-4517-abfa-6802d7c9479b,73eb2aee-6ce9-43a5-8353-24dbfd0a2372,bf93c7c0-de16-4ebb-a348-2709f330d074,50768336-cacb-47d8-ba51-f0fb7970c3c0,16f49d28-677b-4ac7-a93c-9f714b070a5a,0790f4bc-3117-44a1-a5a1-b9b00bfce01c,cf6d1621-6c72-401a-9760-50d72dc1420f,190acc24-2d4b-442c-96ef-eb83316f4576,01fd7129-f923-4e87-bdc0-67c38ccc6756,5d8f6f2d-2c9c-4275-abcb-689e15c06646,b3a54a8c-c2ce-4891-b941-703ef6cf2f66,1d6a69a7-05ab-42e9-807a-caa9b04e6587,0bd6518c-5aec-4b97-817c-6efa43be8c8d,d63402a2-2268-44fc-b415-99eb2276ff7b,2cabf172-9051-4d0f-9e1e-523beb32362e,107dcd74-b06a-4fcd-ac29-4b3136358eb7,17ebfb4f-2cc5-44da-a440-5c28c68997cf,8a6975df-6a78-4c7e-91d5-889da6c2fd80,170d45fe-7fce-4e5b-bd86-f78d2aa8b29e,468effb6-69fa-48b8-9207-dc4f722640a0,e5e88504-6fae-4c34-8324-49508cfad72a,5da9d4ff-ccdd-45af-b1a5-7bd4ac0aeb5f,11cb2711-6225-49ca-bde4-472d2ca8aaef,a9eb5dd7-8e8a-4d1c-b486-2f59bbd12ef0,33a8f7ff-b05a-4a54-b617-a73cd53583bd,a93845cd-6e00-44fc-8928-22d2590bbb61,6137b317-cffc-4e39-80a1-eabb903ed855,c0de40f8-2861-433e-8b68-a80802415335,bdf5fc1e-63a0-41bd-8e31-3239d67152c0,2ffa6ab6-8ebc-4e8d-95a2-7ee6b7ffb9bd,a82d50ad-7995-4db7-9b34-3e9e4e31e4d7,a6a6ec50-675c-4609-9466-a4f32733e16e,8bd47de6-4b38-49c0-864b-f6ea43bd2dff,72113232-8e72-4834-b2be-665ad496f171,6e029d75-ef65-42a8-848e-332e63d70f9c,4ceee9b7-d890-4984-9b7b-9471c3dc7791,decc1d5a-f4ed-4616-982b-53f0d6855704 +/DefaultKeyboardLayout = US_Default +/DisabledIMEngineFactories = 856f06f6-8c57-49d3-8a96-7a5a34023624,d11869f8-04a1-405e-9169-c2660bac0531,b01beb4c-c1ba-4cb5-afb7-d21a9372a231,bdc9e235-bbef-457a-812b-81183de38fbd,424467b4-f967-4173-adac-805b215c2048,2201dce9-230b-4e10-af21-f161d1b6d433,61e81c56-4333-4ef8-bcd1-348ba73226a0,63052466-826f-49d4-a0c1-be7e1f4e0bf9,61ea7bfd-d62a-4dd6-842a-c7f91db5d6ff,d6468711-00e1-47a9-bc4d-a3efe64ccd9c,67ace272-edb7-4828-a993-624c3ffb8891,bac0fe2f-3c3e-45c5-92d9-18924e098751,9cf368db-cf13-4b3b-bffc-660f10b1923c,674e02fd-6614-47c0-bbbf-b95e2f28640f,d1c60e07-7769-4517-abfa-6802d7c9479b,73eb2aee-6ce9-43a5-8353-24dbfd0a2372,bf93c7c0-de16-4ebb-a348-2709f330d074,50768336-cacb-47d8-ba51-f0fb7970c3c0,16f49d28-677b-4ac7-a93c-9f714b070a5a,0790f4bc-3117-44a1-a5a1-b9b00bfce01c,cf6d1621-6c72-401a-9760-50d72dc1420f,190acc24-2d4b-442c-96ef-eb83316f4576,01fd7129-f923-4e87-bdc0-67c38ccc6756,5d8f6f2d-2c9c-4275-abcb-689e15c06646,b3a54a8c-c2ce-4891-b941-703ef6cf2f66,1d6a69a7-05ab-42e9-807a-caa9b04e6587,0bd6518c-5aec-4b97-817c-6efa43be8c8d,d63402a2-2268-44fc-b415-99eb2276ff7b,2cabf172-9051-4d0f-9e1e-523beb32362e,107dcd74-b06a-4fcd-ac29-4b3136358eb7,17ebfb4f-2cc5-44da-a440-5c28c68997cf,8a6975df-6a78-4c7e-91d5-889da6c2fd80,170d45fe-7fce-4e5b-bd86-f78d2aa8b29e,a6a6ec50-675c-4609-9466-a4f32733e16e,468effb6-69fa-48b8-9207-dc4f722640a0,e5e88504-6fae-4c34-8324-49508cfad72a,5da9d4ff-ccdd-45af-b1a5-7bd4ac0aeb5f,11cb2711-6225-49ca-bde4-472d2ca8aaef,c0de40f8-2861-433e-8b68-a80802415335,33a8f7ff-b05a-4a54-b617-a73cd53583bd,a9eb5dd7-8e8a-4d1c-b486-2f59bbd12ef0,8bd47de6-4b38-49c0-864b-f6ea43bd2dff,a82d50ad-7995-4db7-9b34-3e9e4e31e4d7,72113232-8e72-4834-b2be-665ad496f171,2ffa6ab6-8ebc-4e8d-95a2-7ee6b7ffb9bd,bdf5fc1e-63a0-41bd-8e31-3239d67152c0,a93845cd-6e00-44fc-8928-22d2590bbb61,6137b317-cffc-4e39-80a1-eabb903ed855,c6bebc27-6324-4b77-8ad4-6d41dcaf2e08,6e029d75-ef65-42a8-848e-332e63d70f9c,4ceee9b7-d890-4984-9b7b-9471c3dc7791,decc1d5a-f4ed-4616-982b-53f0d6855704 diff --git a/conf_slk120/scim/Makefile b/conf_slk120/scim/Makefile index 4d15bd1..7409199 100644 --- a/conf_slk120/scim/Makefile +++ b/conf_slk120/scim/Makefile @@ -1,9 +1,6 @@ -DIRS= .scim -help: - @echo -e "subdir:\n $(SUBDIR)\n" +all: + ${LN} ${TOP}/scim/.scim/ ~/.scim -install: - @$(CP) $(DIRS) $(ARROW) -chown: - for _FILE in $(DIRS); do $(CHOWN) -R $(WHOOWN) $(ARROW)/$${_FILE}; done +del: + ${RM} ~/.scim diff --git a/conf_slk120/ssh/Makefile b/conf_slk120/ssh/Makefile index 8f731ec..b608cfb 100644 --- a/conf_slk120/ssh/Makefile +++ b/conf_slk120/ssh/Makefile @@ -1,12 +1,10 @@ -DIRS= .ssh -FILES= Equifax_Secure_Certificate_Authority.pem - -help: - @echo -e "subdir:\n $(SUBDIR)\n" - -install: - $(CP) $(DIRS) $(ARROW) - $(CP) $(FILES) $(ROOT)/etc/ssl/certs/ -chown: - for _FILE in $(FILES); do $(CHOWN) $(WHOOWN) $(ROOT)/etc/ssl/certs/$${_FILE}; done - $(CHOWN) $(WHOOWN) $(ARROW)/$(DIRS) + +all: + ${LN} ${TOP}/ssh/.ssh ~/.ssh + sudo ${LN} ${TOP}/ssh/Equifax_Secure_Certificate_Authority.pem /etc/ssl/certs/Equifax_Secure_Certificate_Authority.pem + +del: + ${RM} ~/.ssh + sudo ${RM} /etc/ssl/certs/Equifax_Secure_Certificate_Authority.pem + + diff --git a/conf_slk120/svn/Makefile b/conf_slk120/svn/Makefile index 19c8063..d0ee0f0 100644 --- a/conf_slk120/svn/Makefile +++ b/conf_slk120/svn/Makefile @@ -1,8 +1,6 @@ -help: - @echo -e "subdir:\n $(SUBDIR)\n" +all: + ${ECHO} "svn no install" -install: - -chown: - for _FILE in $(FILES); do $(CHOWN) $(WHOOWN) $(ARROW)/$${_FILE}; done +del: + ${ECHO} "svn no del" diff --git a/conf_slk120/sysinit/Makefile b/conf_slk120/sysinit/Makefile index 19c8063..17f344e 100644 --- a/conf_slk120/sysinit/Makefile +++ b/conf_slk120/sysinit/Makefile @@ -1,8 +1,6 @@ -help: - @echo -e "subdir:\n $(SUBDIR)\n" +all: + ${ECHO} "sysinit no install" -install: - -chown: - for _FILE in $(FILES); do $(CHOWN) $(WHOOWN) $(ARROW)/$${_FILE}; done +del: + ${ECHO} "sysinit no del" diff --git a/conf_slk120/vim/Makefile b/conf_slk120/vim/Makefile index bac0c9f..5d6283d 100644 --- a/conf_slk120/vim/Makefile +++ b/conf_slk120/vim/Makefile @@ -1,4 +1,10 @@ -# Makefile + all: - ln -s `pwd`/_vim ~/.vim - ln -s `pwd`/_vimrc ~/.vimrc + ${LN} ${TOP}/vim/_vim/ ~/.vim + ${LN} ${TOP}/vim/_vimrc ~/.vimrc + +del: + ${RM} ~/.vim + ${RM} ~/.vimrc + ${RM} ~/.gvimrc + diff --git a/conf_slk120/vim/_vim/.highlighter_settings.vim b/conf_slk120/vim/_vim/.highlighter_settings.vim deleted file mode 100755 index b9acc07..0000000 --- a/conf_slk120/vim/_vim/.highlighter_settings.vim +++ /dev/null @@ -1,3 +0,0 @@ -let s:saved_version = 1 -let s:settings = {'rand_bg': 1, 'underline': 0, 'undercurl': 0, 'rand_fg': 1, 'standout': 0, 'bold': 0, 'reverse': 0, 'mode': 3, 'search': 0, 'italic': 0, 'selectedfavorite': 'Yellow Text'} -let s:favorites = {'Ghost Blue': 'guifg=#1A82A8 guibg=#0901C1 gui=bold', 'Lemon Tart': 'guifg=#A1ED09 guibg=#207A9C gui=NONE', 'Ivy League': 'guifg=#F1D05F guibg=#132554 gui=bold', 'Pink Lemonaide': 'guifg=#D0901B guibg=#683A48 gui=NONE', 'Yellow Pen': 'guifg=#0F0932 guibg=#DFF611 gui=bold', 'current': 'guifg=black guibg=lightyellow gui=bold', 'Grape Sucker': 'guifg=#FA9EF4 guibg=#242A55 gui=underline', 'Beet Juice': 'guifg=#EF6C7F guibg=#3A144C gui=bold', 'Easy Blue': 'guifg=NONE guibg=#1F4287 gui=NONE', 'Bold Only': 'guifg=NONE guibg=NONE gui=bold', 'Grass': 'guifg=#D6E793 guibg=#3E6C30 gui=NONE', 'Red Streak': 'guifg=#BBE8E8 guibg=#690B01 gui=bold', 'Yellow Text': 'guifg=#F8D403 guibg=NONE gui=bold'} diff --git a/conf_slk120/vim/_vim/doc/tags b/conf_slk120/vim/_vim/doc/tags new file mode 100755 index 0000000..284d3fa --- /dev/null +++ b/conf_slk120/vim/_vim/doc/tags @@ -0,0 +1,2834 @@ +'SessionMgr_AutoManage' sessionmgr.txt /*'SessionMgr_AutoManage'* +'SessionMgr_DefaultName' sessionmgr.txt /*'SessionMgr_DefaultName'* +'SessionMgr_Dir' sessionmgr.txt /*'SessionMgr_Dir'* +'Tlist_Auto_Highlight_Tag' taglist.txt /*'Tlist_Auto_Highlight_Tag'* +'Tlist_Auto_Open' taglist.txt /*'Tlist_Auto_Open'* +'Tlist_Auto_Update' taglist.txt /*'Tlist_Auto_Update'* +'Tlist_Close_On_Select' taglist.txt /*'Tlist_Close_On_Select'* +'Tlist_Compact_Format' taglist.txt /*'Tlist_Compact_Format'* +'Tlist_Ctags_Cmd' taglist.txt /*'Tlist_Ctags_Cmd'* +'Tlist_Display_Prototype' taglist.txt /*'Tlist_Display_Prototype'* +'Tlist_Display_Tag_Scope' taglist.txt /*'Tlist_Display_Tag_Scope'* +'Tlist_Enable_Fold_Column' taglist.txt /*'Tlist_Enable_Fold_Column'* +'Tlist_Exit_OnlyWindow' taglist.txt /*'Tlist_Exit_OnlyWindow'* +'Tlist_File_Fold_Auto_Close' taglist.txt /*'Tlist_File_Fold_Auto_Close'* +'Tlist_Highlight_Tag_On_BufEnter' taglist.txt /*'Tlist_Highlight_Tag_On_BufEnter'* +'Tlist_Inc_Winwidth' taglist.txt /*'Tlist_Inc_Winwidth'* +'Tlist_Max_Submenu_Items' taglist.txt /*'Tlist_Max_Submenu_Items'* +'Tlist_Max_Tag_Length' taglist.txt /*'Tlist_Max_Tag_Length'* +'Tlist_Process_File_Always' taglist.txt /*'Tlist_Process_File_Always'* +'Tlist_Show_Menu' taglist.txt /*'Tlist_Show_Menu'* +'Tlist_Show_One_File' taglist.txt /*'Tlist_Show_One_File'* +'Tlist_Sort_Type' taglist.txt /*'Tlist_Sort_Type'* +'Tlist_Use_Horiz_Window' taglist.txt /*'Tlist_Use_Horiz_Window'* +'Tlist_Use_Right_Window' taglist.txt /*'Tlist_Use_Right_Window'* +'Tlist_Use_SingleClick' taglist.txt /*'Tlist_Use_SingleClick'* +'Tlist_WinHeight' taglist.txt /*'Tlist_WinHeight'* +'Tlist_WinWidth' taglist.txt /*'Tlist_WinWidth'* +'background' css21.txt /*'background'* +'background-attachment' css21.txt /*'background-attachment'* +'background-color' css21.txt /*'background-color'* +'background-image' css21.txt /*'background-image'* +'background-position' css21.txt /*'background-position'* +'background-repeat' css21.txt /*'background-repeat'* +'border' css21.txt /*'border'* +'border-bottom' css21.txt /*'border-bottom'* +'border-bottom-color' css21.txt /*'border-bottom-color'* +'border-bottom-style' css21.txt /*'border-bottom-style'* +'border-bottom-width' css21.txt /*'border-bottom-width'* +'border-collapse' css21.txt /*'border-collapse'* +'border-color' css21.txt /*'border-color'* +'border-left' css21.txt /*'border-left'* +'border-left-color' css21.txt /*'border-left-color'* +'border-left-style' css21.txt /*'border-left-style'* +'border-left-width' css21.txt /*'border-left-width'* +'border-right' css21.txt /*'border-right'* +'border-right-color' css21.txt /*'border-right-color'* +'border-right-style' css21.txt /*'border-right-style'* +'border-right-width' css21.txt /*'border-right-width'* +'border-spacing' css21.txt /*'border-spacing'* +'border-style' css21.txt /*'border-style'* +'border-top' css21.txt /*'border-top'* +'border-top-color' css21.txt /*'border-top-color'* +'border-top-style' css21.txt /*'border-top-style'* +'border-top-width' css21.txt /*'border-top-width'* +'border-width' css21.txt /*'border-width'* +'bottom' css21.txt /*'bottom'* +'caption-side' css21.txt /*'caption-side'* +'clear' css21.txt /*'clear'* +'clip' css21.txt /*'clip'* +'color' css21.txt /*'color'* +'content' css21.txt /*'content'* +'counter-increment' css21.txt /*'counter-increment'* +'counter-reset' css21.txt /*'counter-reset'* +'cursive' css21.txt /*'cursive'* +'cursor' css21.txt /*'cursor'* +'dashed' css21.txt /*'dashed'* +'direction' css21.txt /*'direction'* +'display' css21.txt /*'display'* +'dotted' css21.txt /*'dotted'* +'double' css21.txt /*'double'* +'empty-cells' css21.txt /*'empty-cells'* +'fantasy' css21.txt /*'fantasy'* +'float' css21.txt /*'float'* +'font' css21.txt /*'font'* +'font-family' css21.txt /*'font-family'* +'font-size' css21.txt /*'font-size'* +'font-style' css21.txt /*'font-style'* +'font-variant' css21.txt /*'font-variant'* +'font-weight' css21.txt /*'font-weight'* +'groove' css21.txt /*'groove'* +'height' css21.txt /*'height'* +'inherit' css21.txt /*'inherit'* +'inline-table' css21.txt /*'inline-table'* +'inset' css21.txt /*'inset'* +'left' css21.txt /*'left'* +'letter-spacing' css21.txt /*'letter-spacing'* +'line-height' css21.txt /*'line-height'* +'list-style' css21.txt /*'list-style'* +'list-style-image' css21.txt /*'list-style-image'* +'list-style-position' css21.txt /*'list-style-position'* +'list-style-type' css21.txt /*'list-style-type'* +'margin' css21.txt /*'margin'* +'margin-bottom' css21.txt /*'margin-bottom'* +'margin-left' css21.txt /*'margin-left'* +'margin-right' css21.txt /*'margin-right'* +'margin-top' css21.txt /*'margin-top'* +'max-height' css21.txt /*'max-height'* +'max-width' css21.txt /*'max-width'* +'min-height' css21.txt /*'min-height'* +'min-width' css21.txt /*'min-width'* +'monospace' css21.txt /*'monospace'* +'oblique' css21.txt /*'oblique'* +'orphans' css21.txt /*'orphans'* +'outline' css21.txt /*'outline'* +'outline-color' css21.txt /*'outline-color'* +'outline-style' css21.txt /*'outline-style'* +'outline-width' css21.txt /*'outline-width'* +'outset' css21.txt /*'outset'* +'overflow' css21.txt /*'overflow'* +'padding' css21.txt /*'padding'* +'padding-bottom' css21.txt /*'padding-bottom'* +'padding-left' css21.txt /*'padding-left'* +'padding-right' css21.txt /*'padding-right'* +'padding-top' css21.txt /*'padding-top'* +'page-break-after' css21.txt /*'page-break-after'* +'page-break-before' css21.txt /*'page-break-before'* +'page-break-inside' css21.txt /*'page-break-inside'* +'position' css21.txt /*'position'* +'property-name' css21.txt /*'property-name'* +'quotes' css21.txt /*'quotes'* +'ridge' css21.txt /*'ridge'* +'right' css21.txt /*'right'* +'sans-serif' css21.txt /*'sans-serif'* +'serif' css21.txt /*'serif'* +'showpairs_enable' showpairs.txt /*'showpairs_enable'* +'showpairs_limit' showpairs.txt /*'showpairs_limit'* +'small-caps' css21.txt /*'small-caps'* +'solid' css21.txt /*'solid'* +'table' css21.txt /*'table'* +'table-caption' css21.txt /*'table-caption'* +'table-cell' css21.txt /*'table-cell'* +'table-column' css21.txt /*'table-column'* +'table-column-group' css21.txt /*'table-column-group'* +'table-footer-group' css21.txt /*'table-footer-group'* +'table-header-group' css21.txt /*'table-header-group'* +'table-layout' css21.txt /*'table-layout'* +'table-row' css21.txt /*'table-row'* +'table-row-group' css21.txt /*'table-row-group'* +'text-align' css21.txt /*'text-align'* +'text-decoration' css21.txt /*'text-decoration'* +'text-indent' css21.txt /*'text-indent'* +'text-transform' css21.txt /*'text-transform'* +'top' css21.txt /*'top'* +'unicode-bidi' css21.txt /*'unicode-bidi'* +'vertical-align' css21.txt /*'vertical-align'* +'visibility' css21.txt /*'visibility'* +'white-space' css21.txt /*'white-space'* +'widows' css21.txt /*'widows'* +'width' css21.txt /*'width'* +'word-spacing' css21.txt /*'word-spacing'* +'z-index' css21.txt /*'z-index'* +:CS cecscope.txt /*:CS* +:CSL cecscope.txt /*:CSL* +:CVSAdd cvscommand.txt /*:CVSAdd* +:CVSAnnotate cvscommand.txt /*:CVSAnnotate* +:CVSCommit cvscommand.txt /*:CVSCommit* +:CVSDiff cvscommand.txt /*:CVSDiff* +:CVSEdit cvscommand.txt /*:CVSEdit* +:CVSEditors cvscommand.txt /*:CVSEditors* +:CVSGotoOriginal cvscommand.txt /*:CVSGotoOriginal* +:CVSLog cvscommand.txt /*:CVSLog* +:CVSRevert cvscommand.txt /*:CVSRevert* +:CVSReview cvscommand.txt /*:CVSReview* +:CVSStatus cvscommand.txt /*:CVSStatus* +:CVSUnedit cvscommand.txt /*:CVSUnedit* +:CVSUpdate cvscommand.txt /*:CVSUpdate* +:CVSVimDiff cvscommand.txt /*:CVSVimDiff* +:CVSWatch cvscommand.txt /*:CVSWatch* +:CVSWatchAdd cvscommand.txt /*:CVSWatchAdd* +:CVSWatchOff cvscommand.txt /*:CVSWatchOff* +:CVSWatchOn cvscommand.txt /*:CVSWatchOn* +:CVSWatchRemove cvscommand.txt /*:CVSWatchRemove* +:CVSWatchers cvscommand.txt /*:CVSWatchers* +:SD sessionmgr.txt /*:SD* +:SE sessionmgr.txt /*:SE* +:SL sessionmgr.txt /*:SL* +:SQ sessionmgr.txt /*:SQ* +:SR sessionmgr.txt /*:SR* +:SS sessionmgr.txt /*:SS* +:TipOfTheDay totd.txt /*:TipOfTheDay* +:TlistAddFiles taglist.txt /*:TlistAddFiles* +:TlistAddFilesRecursive taglist.txt /*:TlistAddFilesRecursive* +:TlistClose taglist.txt /*:TlistClose* +:TlistDebug taglist.txt /*:TlistDebug* +:TlistHighlightTag taglist.txt /*:TlistHighlightTag* +:TlistLock taglist.txt /*:TlistLock* +:TlistMessages taglist.txt /*:TlistMessages* +:TlistOpen taglist.txt /*:TlistOpen* +:TlistSessionLoad taglist.txt /*:TlistSessionLoad* +:TlistSessionSave taglist.txt /*:TlistSessionSave* +:TlistShowPrototype taglist.txt /*:TlistShowPrototype* +:TlistShowTag taglist.txt /*:TlistShowTag* +:TlistToggle taglist.txt /*:TlistToggle* +:TlistUndebug taglist.txt /*:TlistUndebug* +:TlistUnlock taglist.txt /*:TlistUnlock* +:TlistUpdate taglist.txt /*:TlistUpdate* +:VikiDefine viki.txt /*:VikiDefine* +:VikiEdit viki.txt /*:VikiEdit* +:VikiFind viki.txt /*:VikiFind* +:VikiFindNext viki.txt /*:VikiFindNext* +:VikiFindPrev viki.txt /*:VikiFindPrev* +:VikiHome viki.txt /*:VikiHome* +:VikiMarkInexistent viki.txt /*:VikiMarkInexistent* +:VikiMarkInexistentInParagraph viki.txt /*:VikiMarkInexistentInParagraph* +:VikiMinorMode viki.txt /*:VikiMinorMode* +:VikiMinorModeLaTeX viki.txt /*:VikiMinorModeLaTeX* +:VikiMode viki.txt /*:VikiMode* +:VikiQuote viki.txt /*:VikiQuote* +Align-copyright Align.txt /*Align-copyright* +Alph latexhelp.txt /*Alph* +Alt-C latex-suite.txt /*Alt-C* +Alt-L latex-suite.txt /*Alt-L* +Alt-M latex-suite.txt /*Alt-M* +BibTeX latexhelp.txt /*BibTeX* +C-Reference crefvim.txt /*C-Reference* +CSH cecscope.txt /*CSH* +CSS cecscope.txt /*CSS* +CVSCommandAnnotateParent cvscommand.txt /*CVSCommandAnnotateParent* +CVSCommandCVSExec cvscommand.txt /*CVSCommandCVSExec* +CVSCommandCommitOnWrite cvscommand.txt /*CVSCommandCommitOnWrite* +CVSCommandDeleteOnHide cvscommand.txt /*CVSCommandDeleteOnHide* +CVSCommandDiffOpt cvscommand.txt /*CVSCommandDiffOpt* +CVSCommandDiffSplit cvscommand.txt /*CVSCommandDiffSplit* +CVSCommandEdit cvscommand.txt /*CVSCommandEdit* +CVSCommandEnableBufferSetup cvscommand.txt /*CVSCommandEnableBufferSetup* +CVSCommandInteractive cvscommand.txt /*CVSCommandInteractive* +CVSCommandNameMarker cvscommand.txt /*CVSCommandNameMarker* +CVSCommandNameResultBuffers cvscommand.txt /*CVSCommandNameResultBuffers* +CVSCommandSplit cvscommand.txt /*CVSCommandSplit* +EnhComm-Bugs EnhancedCommentify.txt /*EnhComm-Bugs* +EnhComm-Credits EnhancedCommentify.txt /*EnhComm-Credits* +EnhComm-EnhCommentify EnhancedCommentify.txt /*EnhComm-EnhCommentify* +EnhComm-Fallbacks EnhancedCommentify.txt /*EnhComm-Fallbacks* +EnhComm-Keybindings EnhancedCommentify.txt /*EnhComm-Keybindings* +EnhComm-NewLanguages EnhancedCommentify.txt /*EnhComm-NewLanguages* +EnhComm-Options EnhancedCommentify.txt /*EnhComm-Options* +EnhComm-Support EnhancedCommentify.txt /*EnhComm-Support* +EnhancedCommentify EnhancedCommentify.txt /*EnhancedCommentify* +EnhancedCommentify() EnhancedCommentify.txt /*EnhancedCommentify()* +IMAP_PutTextWithMovement latex-suite.txt /*IMAP_PutTextWithMovement* +Imap_DeleteEmptyPlaceHolders latex-suite.txt /*Imap_DeleteEmptyPlaceHolders* +Imap_PlaceHolderEnd latex-suite.txt /*Imap_PlaceHolderEnd* +Imap_PlaceHolderStart latex-suite.txt /*Imap_PlaceHolderStart* +Imap_StickyPlaceHolders latex-suite.txt /*Imap_StickyPlaceHolders* +Imap_UsePlaceHolders latex-suite.txt /*Imap_UsePlaceHolders* +LaTeX latexhelp.txt /*LaTeX* +LargeFile-copyright LargeFile.txt /*LargeFile-copyright* +LargeFile.txt LargeFile.txt /*LargeFile.txt* +NERD_allow_any_visual_delims_regexp NERD_comments.txt /*NERD_allow_any_visual_delims_regexp* +NERD_alt_com_map NERD_comments.txt /*NERD_alt_com_map* +NERD_append_com_map NERD_comments.txt /*NERD_append_com_map* +NERD_block_com_after_right NERD_comments.txt /*NERD_block_com_after_right* +NERD_com-EOL-comment NERD_comments.txt /*NERD_com-EOL-comment* +NERD_com-aligned-comment NERD_comments.txt /*NERD_com-aligned-comment* +NERD_com-alt-delim NERD_comments.txt /*NERD_com-alt-delim* +NERD_com-append-comment NERD_comments.txt /*NERD_com-append-comment* +NERD_com-comment NERD_comments.txt /*NERD_com-comment* +NERD_com-credits NERD_comments.txt /*NERD_com-credits* +NERD_com-cust-delims NERD_comments.txt /*NERD_com-cust-delims* +NERD_com-cust-details NERD_comments.txt /*NERD_com-cust-details* +NERD_com-cust-keys NERD_comments.txt /*NERD_com-cust-keys* +NERD_com-cust-summary NERD_comments.txt /*NERD_com-cust-summary* +NERD_com-customisation NERD_comments.txt /*NERD_com-customisation* +NERD_com-filetypes NERD_comments.txt /*NERD_com-filetypes* +NERD_com-functionality NERD_comments.txt /*NERD_com-functionality* +NERD_com-functionality-details NERD_comments.txt /*NERD_com-functionality-details* +NERD_com-functionality-summary NERD_comments.txt /*NERD_com-functionality-summary* +NERD_com-heuristics NERD_comments.txt /*NERD_com-heuristics* +NERD_com-insert-comment NERD_comments.txt /*NERD_com-insert-comment* +NERD_com-invert-comment NERD_comments.txt /*NERD_com-invert-comment* +NERD_com-issues NERD_comments.txt /*NERD_com-issues* +NERD_com-nested-comment NERD_comments.txt /*NERD_com-nested-comment* +NERD_com-nesting NERD_comments.txt /*NERD_com-nesting* +NERD_com-prepend-comment NERD_comments.txt /*NERD_com-prepend-comment* +NERD_com-reg-exps NERD_comments.txt /*NERD_com-reg-exps* +NERD_com-sexy-comment NERD_comments.txt /*NERD_com-sexy-comment* +NERD_com-todo NERD_comments.txt /*NERD_com-todo* +NERD_com-toggle-comment NERD_comments.txt /*NERD_com-toggle-comment* +NERD_com-uncomment-line NERD_comments.txt /*NERD_com-uncomment-line* +NERD_com-yank-comment NERD_comments.txt /*NERD_com-yank-comment* +NERD_com_align_both_map NERD_comments.txt /*NERD_com_align_both_map* +NERD_com_align_left_map NERD_comments.txt /*NERD_com_align_left_map* +NERD_com_align_right_map NERD_comments.txt /*NERD_com_align_right_map* +NERD_com_in_insert_map NERD_comments.txt /*NERD_com_in_insert_map* +NERD_com_line_invert_map NERD_comments.txt /*NERD_com_line_invert_map* +NERD_com_line_map NERD_comments.txt /*NERD_com_line_map* +NERD_com_line_nest_map NERD_comments.txt /*NERD_com_line_nest_map* +NERD_com_line_sexy_map NERD_comments.txt /*NERD_com_line_sexy_map* +NERD_com_line_toggle_map NERD_comments.txt /*NERD_com_line_toggle_map* +NERD_com_line_yank_map NERD_comments.txt /*NERD_com_line_yank_map* +NERD_com_sexy_comments NERD_comments.txt /*NERD_com_sexy_comments* +NERD_com_to_end_of_line_map NERD_comments.txt /*NERD_com_to_end_of_line_map* +NERD_comment_whole_lines_in_v_mode NERD_comments.txt /*NERD_comment_whole_lines_in_v_mode* +NERD_comments NERD_comments.txt /*NERD_comments* +NERD_comments-contents NERD_comments.txt /*NERD_comments-contents* +NERD_comments.txt NERD_comments.txt /*NERD_comments.txt* +NERD_create_h_filetype NERD_comments.txt /*NERD_create_h_filetype* +NERD_dont_create_menu_shortcut NERD_comments.txt /*NERD_dont_create_menu_shortcut* +NERD_dont_remove_alt_coms NERD_comments.txt /*NERD_dont_remove_alt_coms* +NERD_dont_remove_spaces_regexp NERD_comments.txt /*NERD_dont_remove_spaces_regexp* +NERD_lPlace NERD_comments.txt /*NERD_lPlace* +NERD_left_align_regexp NERD_comments.txt /*NERD_left_align_regexp* +NERD_place_holder_regexp NERD_comments.txt /*NERD_place_holder_regexp* +NERD_rPlace NERD_comments.txt /*NERD_rPlace* +NERD_right_align_regexp NERD_comments.txt /*NERD_right_align_regexp* +NERD_shut_up NERD_comments.txt /*NERD_shut_up* +NERD_space_delim_filetype_regexp NERD_comments.txt /*NERD_space_delim_filetype_regexp* +NERD_uncom_line_map NERD_comments.txt /*NERD_uncom_line_map* +NERD_use_compact_sexy_com_regexp NERD_comments.txt /*NERD_use_compact_sexy_com_regexp* +NERD_use_nested_comments_default NERD_comments.txt /*NERD_use_nested_comments_default* +NERD_use_sexy_coms_default_regexp NERD_comments.txt /*NERD_use_sexy_coms_default_regexp* +NERD_use_toggle_coms_default NERD_comments.txt /*NERD_use_toggle_coms_default* +Plug_IMAP_DeleteAndJumBack latex-suite.txt /*Plug_IMAP_DeleteAndJumBack* +Plug_IMAP_DeleteAndJumpForward latex-suite.txt /*Plug_IMAP_DeleteAndJumpForward* +Plug_IMAP_JumpBack latex-suite.txt /*Plug_IMAP_JumpBack* +Plug_IMAP_JumpForward latex-suite.txt /*Plug_IMAP_JumpForward* +Plug_Tex_LeftRight latex-suite.txt /*Plug_Tex_LeftRight* +Plug_Tex_MathBF latex-suite.txt /*Plug_Tex_MathBF* +Plug_Tex_MathCal latex-suite.txt /*Plug_Tex_MathCal* +Roman latexhelp.txt /*Roman* +SQLUtilities.txt SQLUtilities.txt /*SQLUtilities.txt* +SessionMgr.txt sessionmgr.txt /*SessionMgr.txt* +ShowPairsToggle showpairs.txt /*ShowPairsToggle* +TClearCiteHist latex-suite.txt /*TClearCiteHist* +TLook latex-suite.txt /*TLook* +TLookAll latex-suite.txt /*TLookAll* +TLookBib latex-suite.txt /*TLookBib* +TMacro latex-suite.txt /*TMacro* +TMacroDelete latex-suite.txt /*TMacroDelete* +TMacroEdit latex-suite.txt /*TMacroEdit* +TMacroNew latex-suite.txt /*TMacroNew* +TPackage latex-suite.txt /*TPackage* +TPackageUpdate latex-suite.txt /*TPackageUpdate* +TPackageUpdateAll latex-suite.txt /*TPackageUpdateAll* +TPartComp latex-suite.txt /*TPartComp* +TPartView latex-suite.txt /*TPartView* +TSection latex-suite.txt /*TSection* +TSectionAdvanced latex-suite.txt /*TSectionAdvanced* +TTemplate latex-suite.txt /*TTemplate* +Tex_AutoFolding latex-suite.txt /*Tex_AutoFolding* +Tex_BIBINPUTS latex-suite.txt /*Tex_BIBINPUTS* +Tex_CatchVisMapErrors latex-suite.txt /*Tex_CatchVisMapErrors* +Tex_Com_name latex-suite.txt /*Tex_Com_name* +Tex_CompileRule_format latex-suite.txt /*Tex_CompileRule_format* +Tex_Debug latex-suite.txt /*Tex_Debug* +Tex_DefaultTargetFormat latex-suite.txt /*Tex_DefaultTargetFormat* +Tex_Diacritics latex-suite.txt /*Tex_Diacritics* +Tex_Env_name latex-suite.txt /*Tex_Env_name* +Tex_EnvironmentMaps latex-suite.txt /*Tex_EnvironmentMaps* +Tex_EnvironmentMenus latex-suite.txt /*Tex_EnvironmentMenus* +Tex_ExplorerHeight latex-suite.txt /*Tex_ExplorerHeight* +Tex_Folding latex-suite.txt /*Tex_Folding* +Tex_FontMaps latex-suite.txt /*Tex_FontMaps* +Tex_FontMenus latex-suite.txt /*Tex_FontMenus* +Tex_HotKeyMappings latex-suite.txt /*Tex_HotKeyMappings* +Tex_IgnoreLevel latex-suite.txt /*Tex_IgnoreLevel* +Tex_IgnoredWarnings latex-suite.txt /*Tex_IgnoredWarnings* +Tex_ImageDir latex-suite.txt /*Tex_ImageDir* +Tex_Leader latex-suite.txt /*Tex_Leader* +Tex_Leader2 latex-suite.txt /*Tex_Leader2* +Tex_MainFileExpression latex-suite.txt /*Tex_MainFileExpression* +Tex_MainMenuLocation latex-suite.txt /*Tex_MainMenuLocation* +Tex_MathMenus latex-suite.txt /*Tex_MathMenus* +Tex_Menus latex-suite.txt /*Tex_Menus* +Tex_MultipleCompileFormats latex-suite.txt /*Tex_MultipleCompileFormats* +Tex_NestElementMenus latex-suite.txt /*Tex_NestElementMenus* +Tex_NestPackagesMenu latex-suite.txt /*Tex_NestPackagesMenu* +Tex_PackagesMenu latex-suite.txt /*Tex_PackagesMenu* +Tex_PromptedCommands latex-suite.txt /*Tex_PromptedCommands* +Tex_PromptedEnvironments latex-suite.txt /*Tex_PromptedEnvironments* +Tex_RememberCiteSearch latex-suite.txt /*Tex_RememberCiteSearch* +Tex_SectionMaps latex-suite.txt /*Tex_SectionMaps* +Tex_SectionMenus latex-suite.txt /*Tex_SectionMenus* +Tex_SmartKeyBS latex-suite.txt /*Tex_SmartKeyBS* +Tex_SmartKeyQuote latex-suite.txt /*Tex_SmartKeyQuote* +Tex_TEXINPUTS latex-suite.txt /*Tex_TEXINPUTS* +Tex_UseMakefile latex-suite.txt /*Tex_UseMakefile* +Tex_UseMenuWizard latex-suite.txt /*Tex_UseMenuWizard* +Tex_UsePython latex-suite.txt /*Tex_UsePython* +Tex_UseUtfMenus latex-suite.txt /*Tex_UseUtfMenus* +Tex_ViewRule_format latex-suite.txt /*Tex_ViewRule_format* +Tex_ViewerCwindowHeight latex-suite.txt /*Tex_ViewerCwindowHeight* +Tex_ViewerPreviewHeight latex-suite.txt /*Tex_ViewerPreviewHeight* +Tlist_Get_Tag_Prototype_By_Line() taglist.txt /*Tlist_Get_Tag_Prototype_By_Line()* +Tlist_Get_Tagname_By_Line() taglist.txt /*Tlist_Get_Tagname_By_Line()* +Tlist_Set_App() taglist.txt /*Tlist_Set_App()* +Tlist_Update_File_Tags() taglist.txt /*Tlist_Update_File_Tags()* +Tshortcuts latex-suite.txt /*Tshortcuts* +VikiDefineHighlighting() viki.txt /*VikiDefineHighlighting()* +VikiDefineMarkup() viki.txt /*VikiDefineMarkup()* +VikiFindAnchor() viki.txt /*VikiFindAnchor()* +VikiGoBack() viki.txt /*VikiGoBack()* +VikiMaybeFollowLink() viki.txt /*VikiMaybeFollowLink()* +VikiMinorMode() viki.txt /*VikiMinorMode()* +VikiMode() viki.txt /*VikiMode()* +VikiOpenSpecialFile() viki.txt /*VikiOpenSpecialFile()* +VikiOpenSpecialProtocol() viki.txt /*VikiOpenSpecialProtocol()* +WW_Attach_Constrain_Menu WinWalker.txt /*WW_Attach_Constrain_Menu* +WW_Bugs WinWalker.txt /*WW_Bugs* +WW_Caveats WinWalker.txt /*WW_Caveats* +WW_Commands WinWalker.txt /*WW_Commands* +WW_Customizing WinWalker.txt /*WW_Customizing* +WW_Features WinWalker.txt /*WW_Features* +WW_Initial_Set_Up WinWalker.txt /*WW_Initial_Set_Up* +WW_Macro_keys WinWalker.txt /*WW_Macro_keys* +WW_Main_Menu WinWalker.txt /*WW_Main_Menu* +WW_Misc_Menu WinWalker.txt /*WW_Misc_Menu* +WW_Notes WinWalker.txt /*WW_Notes* +WW_Notes_Other_Bugs WinWalker.txt /*WW_Notes_Other_Bugs* +WW_Other WinWalker.txt /*WW_Other* +WW_Save_Menu WinWalker.txt /*WW_Save_Menu* +WW_Starting WinWalker.txt /*WW_Starting* +WW_Tab_Menu WinWalker.txt /*WW_Tab_Menu* +WW_Useful_Examples WinWalker.txt /*WW_Useful_Examples* +WW_grow WinWalker.txt /*WW_grow* +WW_presets WinWalker.txt /*WW_presets* +WW_resize WinWalker.txt /*WW_resize* +WW_timeoutlen WinWalker.txt /*WW_timeoutlen* +WinWalker.txt WinWalker.txt /*WinWalker.txt* +\Alph latexhelp.txt /*\\Alph* +\Huge latexhelp.txt /*\\Huge* +\LARGE latexhelp.txt /*\\LARGE* +\Large latexhelp.txt /*\\Large* +\Roman latexhelp.txt /*\\Roman* +\\ latexhelp.txt /*\\\\* +\\\\ latexhelp.txt /*\\\\\\\\* +\addcontentsline latexhelp.txt /*\\addcontentsline* +\address latexhelp.txt /*\\address* +\addtocontents latexhelp.txt /*\\addtocontents* +\addtocounter latexhelp.txt /*\\addtocounter* +\addtolength latexhelp.txt /*\\addtolength* +\addvspace latexhelp.txt /*\\addvspace* +\alph latexhelp.txt /*\\alph* +\and latexhelp.txt /*\\and* +\appendix latexhelp.txt /*\\appendix* +\arabic latexhelp.txt /*\\arabic* +\author latexhelp.txt /*\\author* +\begin latexhelp.txt /*\\begin* +\bfseries latexhelp.txt /*\\bfseries* +\bibitem latexhelp.txt /*\\bibitem* +\bibliography latexhelp.txt /*\\bibliography* +\bibliographystyle latexhelp.txt /*\\bibliographystyle* +\bigskip latexhelp.txt /*\\bigskip* +\cc latexhelp.txt /*\\cc* +\cdots latexhelp.txt /*\\cdots* +\centering latexhelp.txt /*\\centering* +\chapter latexhelp.txt /*\\chapter* +\circle latexhelp.txt /*\\circle* +\cite latexhelp.txt /*\\cite* +\cleardoublepage latexhelp.txt /*\\cleardoublepage* +\clearpage latexhelp.txt /*\\clearpage* +\cline latexhelp.txt /*\\cline* +\closing latexhelp.txt /*\\closing* +\dashbox latexhelp.txt /*\\dashbox* +\date latexhelp.txt /*\\date* +\ddots latexhelp.txt /*\\ddots* +\depth latexhelp.txt /*\\depth* +\documentclass latexhelp.txt /*\\documentclass* +\dotfill latexhelp.txt /*\\dotfill* +\emph latexhelp.txt /*\\emph* +\end latexhelp.txt /*\\end* +\enlargethispage latexhelp.txt /*\\enlargethispage* +\fbox latexhelp.txt /*\\fbox* +\flushbottom latexhelp.txt /*\\flushbottom* +\fnsymbol latexhelp.txt /*\\fnsymbol* +\fontencoding latexhelp.txt /*\\fontencoding* +\fontfamily latexhelp.txt /*\\fontfamily* +\fontseries latexhelp.txt /*\\fontseries* +\fontshape latexhelp.txt /*\\fontshape* +\fontsize latexhelp.txt /*\\fontsize* +\footnote latexhelp.txt /*\\footnote* +\footnotemark latexhelp.txt /*\\footnotemark* +\footnotesize latexhelp.txt /*\\footnotesize* +\footnotetext latexhelp.txt /*\\footnotetext* +\frac latexhelp.txt /*\\frac* +\frame latexhelp.txt /*\\frame* +\framebox latexhelp.txt /*\\framebox* +\fussy latexhelp.txt /*\\fussy* +\height latexhelp.txt /*\\height* +\hfill latexhelp.txt /*\\hfill* +\hline latexhelp.txt /*\\hline* +\hrulefill latexhelp.txt /*\\hrulefill* +\hspace latexhelp.txt /*\\hspace* +\huge latexhelp.txt /*\\huge* +\hyphenation latexhelp.txt /*\\hyphenation* +\include latexhelp.txt /*\\include* +\includeonly latexhelp.txt /*\\includeonly* +\indent latexhelp.txt /*\\indent* +\input latexhelp.txt /*\\input* +\item latexhelp.txt /*\\item* +\itshape latexhelp.txt /*\\itshape* +\kill latexhelp.txt /*\\kill* +\label latexhelp.txt /*\\label* +\large latexhelp.txt /*\\large* +\ldots latexhelp.txt /*\\ldots* +\lefteqn latexhelp.txt /*\\lefteqn* +\letter latexhelp.txt /*\\letter* +\line latexhelp.txt /*\\line* +\linebreak latexhelp.txt /*\\linebreak* +\linethickness latexhelp.txt /*\\linethickness* +\listoffigures latexhelp.txt /*\\listoffigures* +\listoftables latexhelp.txt /*\\listoftables* +\location latexhelp.txt /*\\location* +\lrbox latexhelp.txt /*\\lrbox* +\makebox latexhelp.txt /*\\makebox* +\makelabels latexhelp.txt /*\\makelabels* +\maketitle latexhelp.txt /*\\maketitle* +\marginpar latexhelp.txt /*\\marginpar* +\markboth latexhelp.txt /*\\markboth* +\markright latexhelp.txt /*\\markright* +\mathbf latexhelp.txt /*\\mathbf* +\mathcal latexhelp.txt /*\\mathcal* +\mathit latexhelp.txt /*\\mathit* +\mathnormal latexhelp.txt /*\\mathnormal* +\mathrm latexhelp.txt /*\\mathrm* +\mathsf latexhelp.txt /*\\mathsf* +\mathtt latexhelp.txt /*\\mathtt* +\mathversion latexhelp.txt /*\\mathversion* +\mbox latexhelp.txt /*\\mbox* +\mdseries latexhelp.txt /*\\mdseries* +\medskip latexhelp.txt /*\\medskip* +\multicolumn latexhelp.txt /*\\multicolumn* +\multiput latexhelp.txt /*\\multiput* +\name latexhelp.txt /*\\name* +\newcommand latexhelp.txt /*\\newcommand* +\newcounter latexhelp.txt /*\\newcounter* +\newenvironment latexhelp.txt /*\\newenvironment* +\newfont latexhelp.txt /*\\newfont* +\newlength latexhelp.txt /*\\newlength* +\newline latexhelp.txt /*\\newline* +\newpage latexhelp.txt /*\\newpage* +\newsavebox latexhelp.txt /*\\newsavebox* +\newtheorem latexhelp.txt /*\\newtheorem* +\nocite latexhelp.txt /*\\nocite* +\nofiles latexhelp.txt /*\\nofiles* +\noindent latexhelp.txt /*\\noindent* +\nolinebreak latexhelp.txt /*\\nolinebreak* +\nonumber latexhelp.txt /*\\nonumber* +\nopagebreak latexhelp.txt /*\\nopagebreak* +\normalfont latexhelp.txt /*\\normalfont* +\normalsize latexhelp.txt /*\\normalsize* +\onecolumn latexhelp.txt /*\\onecolumn* +\opening latexhelp.txt /*\\opening* +\oval latexhelp.txt /*\\oval* +\overbrace latexhelp.txt /*\\overbrace* +\overline latexhelp.txt /*\\overline* +\pagebreak latexhelp.txt /*\\pagebreak* +\pagenumbering latexhelp.txt /*\\pagenumbering* +\pageref latexhelp.txt /*\\pageref* +\pagestyle latexhelp.txt /*\\pagestyle* +\par latexhelp.txt /*\\par* +\paragraph latexhelp.txt /*\\paragraph* +\parbox latexhelp.txt /*\\parbox* +\part latexhelp.txt /*\\part* +\picture-framebox latexhelp.txt /*\\picture-framebox* +\ps latexhelp.txt /*\\ps* +\pushtabs latexhelp.txt /*\\pushtabs* +\put latexhelp.txt /*\\put* +\raggedbottom latexhelp.txt /*\\raggedbottom* +\raggedleft latexhelp.txt /*\\raggedleft* +\raggedright latexhelp.txt /*\\raggedright* +\raisebox latexhelp.txt /*\\raisebox* +\ref latexhelp.txt /*\\ref* +\refstepcounter latexhelp.txt /*\\refstepcounter* +\renewcommand latexhelp.txt /*\\renewcommand* +\renewenvironment latexhelp.txt /*\\renewenvironment* +\reversemarginpar latexhelp.txt /*\\reversemarginpar* +\rmfamily latexhelp.txt /*\\rmfamily* +\roman latexhelp.txt /*\\roman* +\rule latexhelp.txt /*\\rule* +\savebox latexhelp.txt /*\\savebox* +\sbox latexhelp.txt /*\\sbox* +\scriptsize latexhelp.txt /*\\scriptsize* +\scshape latexhelp.txt /*\\scshape* +\section latexhelp.txt /*\\section* +\selectfont latexhelp.txt /*\\selectfont* +\setcounter latexhelp.txt /*\\setcounter* +\setlength latexhelp.txt /*\\setlength* +\settodepth latexhelp.txt /*\\settodepth* +\settoheight latexhelp.txt /*\\settoheight* +\settowidth latexhelp.txt /*\\settowidth* +\sffamily latexhelp.txt /*\\sffamily* +\shortstack latexhelp.txt /*\\shortstack* +\signature latexhelp.txt /*\\signature* +\sloppy latexhelp.txt /*\\sloppy* +\slshape latexhelp.txt /*\\slshape* +\small latexhelp.txt /*\\small* +\smallskip latexhelp.txt /*\\smallskip* +\space latexhelp.txt /*\\space* +\sqrt latexhelp.txt /*\\sqrt* +\startbreaks latexhelp.txt /*\\startbreaks* +\stepcounter latexhelp.txt /*\\stepcounter* +\stopbreaks latexhelp.txt /*\\stopbreaks* +\subparagraph latexhelp.txt /*\\subparagraph* +\subsection latexhelp.txt /*\\subsection* +\subsubsection latexhelp.txt /*\\subsubsection* +\symbol latexhelp.txt /*\\symbol* +\table latexhelp.txt /*\\table* +\tableofcontents latexhelp.txt /*\\tableofcontents* +\telephone latexhelp.txt /*\\telephone* +\textbf latexhelp.txt /*\\textbf* +\textit latexhelp.txt /*\\textit* +\textmd latexhelp.txt /*\\textmd* +\textnormal latexhelp.txt /*\\textnormal* +\textrm latexhelp.txt /*\\textrm* +\textsc latexhelp.txt /*\\textsc* +\textsf latexhelp.txt /*\\textsf* +\textsl latexhelp.txt /*\\textsl* +\texttt latexhelp.txt /*\\texttt* +\textup latexhelp.txt /*\\textup* +\thanks latexhelp.txt /*\\thanks* +\thebibliography latexhelp.txt /*\\thebibliography* +\thispagestyle latexhelp.txt /*\\thispagestyle* +\tiny latexhelp.txt /*\\tiny* +\title latexhelp.txt /*\\title* +\totalheight latexhelp.txt /*\\totalheight* +\ttfamily latexhelp.txt /*\\ttfamily* +\twocolumn latexhelp.txt /*\\twocolumn* +\typein latexhelp.txt /*\\typein* +\typeout latexhelp.txt /*\\typeout* +\underbrace latexhelp.txt /*\\underbrace* +\underline latexhelp.txt /*\\underline* +\upshape latexhelp.txt /*\\upshape* +\usebox latexhelp.txt /*\\usebox* +\usecounter latexhelp.txt /*\\usecounter* +\usefont latexhelp.txt /*\\usefont* +\usepackage latexhelp.txt /*\\usepackage* +\value latexhelp.txt /*\\value* +\vdots latexhelp.txt /*\\vdots* +\vector latexhelp.txt /*\\vector* +\verb latexhelp.txt /*\\verb* +\vfill latexhelp.txt /*\\vfill* +\vline latexhelp.txt /*\\vline* +\vspace latexhelp.txt /*\\vspace* +\width latexhelp.txt /*\\width* +adding-bib-options latex-suite.txt /*adding-bib-options* +align Align.txt /*align* +align-align Align.txt /*align-align* +align-contents Align.txt /*align-contents* +align-control Align.txt /*align-control* +align-history Align.txt /*align-history* +align-manual Align.txt /*align-manual* +align-maps Align.txt /*align-maps* +align-usage Align.txt /*align-usage* +align.txt Align.txt /*align.txt* +alignctrl Align.txt /*alignctrl* +alignctrl- Align.txt /*alignctrl-* +alignctrl-+ Align.txt /*alignctrl-+* +alignctrl-- Align.txt /*alignctrl--* +alignctrl-: Align.txt /*alignctrl-:* +alignctrl-< Align.txt /*alignctrl-<* +alignctrl-= Align.txt /*alignctrl-=* +alignctrl-> Align.txt /*alignctrl->* +alignctrl-C Align.txt /*alignctrl-C* +alignctrl-I Align.txt /*alignctrl-I* +alignctrl-P Align.txt /*alignctrl-P* +alignctrl-W Align.txt /*alignctrl-W* +alignctrl-c Align.txt /*alignctrl-c* +alignctrl-g Align.txt /*alignctrl-g* +alignctrl-l Align.txt /*alignctrl-l* +alignctrl-m Align.txt /*alignctrl-m* +alignctrl-no-option Align.txt /*alignctrl-no-option* +alignctrl-p Align.txt /*alignctrl-p* +alignctrl-r Align.txt /*alignctrl-r* +alignctrl-separators Align.txt /*alignctrl-separators* +alignctrl-settings Align.txt /*alignctrl-settings* +alignctrl-v Align.txt /*alignctrl-v* +alignctrl-w Align.txt /*alignctrl-w* +alignman Align.txt /*alignman* +alignmanual Align.txt /*alignmanual* +alignmap-Htd Align.txt /*alignmap-Htd* +alignmap-T= Align.txt /*alignmap-T=* +alignmap-a, Align.txt /*alignmap-a,* +alignmap-a< Align.txt /*alignmap-a<* +alignmap-a= Align.txt /*alignmap-a=* +alignmap-a? Align.txt /*alignmap-a?* +alignmap-abox Align.txt /*alignmap-abox* +alignmap-acom Align.txt /*alignmap-acom* +alignmap-adcom Align.txt /*alignmap-adcom* +alignmap-adec Align.txt /*alignmap-adec* +alignmap-adef Align.txt /*alignmap-adef* +alignmap-afnc Align.txt /*alignmap-afnc* +alignmap-anum Align.txt /*alignmap-anum* +alignmap-aocom Align.txt /*alignmap-aocom* +alignmap-ascom Align.txt /*alignmap-ascom* +alignmap-history Align.txt /*alignmap-history* +alignmap-m= Align.txt /*alignmap-m=* +alignmap-t# Align.txt /*alignmap-t#* +alignmap-t, Align.txt /*alignmap-t,* +alignmap-t: Align.txt /*alignmap-t:* +alignmap-t; Align.txt /*alignmap-t;* +alignmap-t< Align.txt /*alignmap-t<* +alignmap-t= Align.txt /*alignmap-t=* +alignmap-t? Align.txt /*alignmap-t?* +alignmap-tab Align.txt /*alignmap-tab* +alignmap-tml Align.txt /*alignmap-tml* +alignmap-ts, Align.txt /*alignmap-ts,* +alignmap-tsp Align.txt /*alignmap-tsp* +alignmap-tsq Align.txt /*alignmap-tsq* +alignmap-tt Align.txt /*alignmap-tt* +alignmap-t~ Align.txt /*alignmap-t~* +alignmaps Align.txt /*alignmaps* +alignusage Align.txt /*alignusage* +alph latexhelp.txt /*alph* +arabic latexhelp.txt /*arabic* +array latexhelp.txt /*array* +article-class latexhelp.txt /*article-class* +auc-tex-mappings latex-suite.txt /*auc-tex-mappings* +automatic-package-detection latex-suite.txt /*automatic-package-detection* +b:cvsOrigBuffNR cvscommand.txt /*b:cvsOrigBuffNR* +b:cvscmd cvscommand.txt /*b:cvscmd* +b:vikiAnchorRx viki.txt /*b:vikiAnchorRx* +b:vikiCommentStart viki.txt /*b:vikiCommentStart* +b:vikiDisableType viki.txt /*b:vikiDisableType* +b:vikiInverseFold viki.txt /*b:vikiInverseFold* +b:vikiMaxFoldLevel viki.txt /*b:vikiMaxFoldLevel* +b:vikiNameSuffix viki.txt /*b:vikiNameSuffix* +b:vikiNoSimpleNames viki.txt /*b:vikiNoSimpleNames* +bash-support bashsupport.txt /*bash-support* +bashsupport bashsupport.txt /*bashsupport* +bashsupport-aligned-comm bashsupport.txt /*bashsupport-aligned-comm* +bashsupport-cmdline-args bashsupport.txt /*bashsupport-cmdline-args* +bashsupport-code-to-comm bashsupport.txt /*bashsupport-code-to-comm* +bashsupport-comm-echo bashsupport.txt /*bashsupport-comm-echo* +bashsupport-comm-keywords bashsupport.txt /*bashsupport-comm-keywords* +bashsupport-comm-templates bashsupport.txt /*bashsupport-comm-templates* +bashsupport-comm-to-code bashsupport.txt /*bashsupport-comm-to-code* +bashsupport-comments bashsupport.txt /*bashsupport-comments* +bashsupport-custom-files bashsupport.txt /*bashsupport-custom-files* +bashsupport-custom-root bashsupport.txt /*bashsupport-custom-root* +bashsupport-custom-variables bashsupport.txt /*bashsupport-custom-variables* +bashsupport-customization bashsupport.txt /*bashsupport-customization* +bashsupport-debugger bashsupport.txt /*bashsupport-debugger* +bashsupport-dictionary bashsupport.txt /*bashsupport-dictionary* +bashsupport-hardcopy bashsupport.txt /*bashsupport-hardcopy* +bashsupport-hotkeys bashsupport.txt /*bashsupport-hotkeys* +bashsupport-output bashsupport.txt /*bashsupport-output* +bashsupport-regex bashsupport.txt /*bashsupport-regex* +bashsupport-release-notes bashsupport.txt /*bashsupport-release-notes* +bashsupport-run bashsupport.txt /*bashsupport-run* +bashsupport-run-script bashsupport.txt /*bashsupport-run-script* +bashsupport-set bashsupport.txt /*bashsupport-set* +bashsupport-shopt bashsupport.txt /*bashsupport-shopt* +bashsupport-stat-norm-ins bashsupport.txt /*bashsupport-stat-norm-ins* +bashsupport-stat-snippets bashsupport.txt /*bashsupport-stat-snippets* +bashsupport-stat-visual bashsupport.txt /*bashsupport-stat-visual* +bashsupport-statements bashsupport.txt /*bashsupport-statements* +bashsupport-syntax-check bashsupport.txt /*bashsupport-syntax-check* +bashsupport-tags bashsupport.txt /*bashsupport-tags* +bashsupport-tempfiles bashsupport.txt /*bashsupport-tempfiles* +bashsupport-usage-gvim bashsupport.txt /*bashsupport-usage-gvim* +bashsupport-usage-vim bashsupport.txt /*bashsupport-usage-vim* +bashsupport-xterm bashsupport.txt /*bashsupport-xterm* +bashsupport.txt bashsupport.txt /*bashsupport.txt* +bibtex latexhelp.txt /*bibtex* +bibtex-bindings latex-suite.txt /*bibtex-bindings* +book-class latexhelp.txt /*book-class* +bracketing-macros latex-suite.txt /*bracketing-macros* +c-support csupport.txt /*c-support* +cecscope-contents cecscope.txt /*cecscope-contents* +cecscope-copyright cecscope.txt /*cecscope-copyright* +cecscope-history cecscope.txt /*cecscope-history* +cecscope-install cecscope.txt /*cecscope-install* +cecscope-manual cecscope.txt /*cecscope-manual* +cecscope-tutorial cecscope.txt /*cecscope-tutorial* +cecscope.txt cecscope.txt /*cecscope.txt* +center latexhelp.txt /*center* +cite-search-caching latex-suite.txt /*cite-search-caching* +compiler-customization latex-suite.txt /*compiler-customization* +compiler-dependency latex-suite.txt /*compiler-dependency* +compiler-output-customization latex-suite.txt /*compiler-output-customization* +compiler-rules latex-suite.txt /*compiler-rules* +compiling-multiple latex-suite.txt /*compiling-multiple* +completion-window-preferences latex-suite.txt /*completion-window-preferences* +crefvim crefvim.txt /*crefvim* +crefvim.txt crefvim.txt /*crefvim.txt* +crefvimdoc crefvimdoc.txt /*crefvimdoc* +crefvimdoc.txt crefvimdoc.txt /*crefvimdoc.txt* +crv-# crefvim.txt /*crv-#* +crv-## crefvim.txt /*crv-##* +crv-#define crefvim.txt /*crv-#define* +crv-#elif crefvim.txt /*crv-#elif* +crv-#else crefvim.txt /*crv-#else* +crv-#endif crefvim.txt /*crv-#endif* +crv-#error crefvim.txt /*crv-#error* +crv-#if crefvim.txt /*crv-#if* +crv-#ifdef crefvim.txt /*crv-#ifdef* +crv-#ifndef crefvim.txt /*crv-#ifndef* +crv-#include crefvim.txt /*crv-#include* +crv-#line crefvim.txt /*crv-#line* +crv-#pragma crefvim.txt /*crv-#pragma* +crv-#undef crefvim.txt /*crv-#undef* +crv-BUFSIZ crefvim.txt /*crv-BUFSIZ* +crv-CHAR_BIT crefvim.txt /*crv-CHAR_BIT* +crv-CHAR_MAX crefvim.txt /*crv-CHAR_MAX* +crv-CHAR_MIN crefvim.txt /*crv-CHAR_MIN* +crv-CLOCKS_PER_SEC crefvim.txt /*crv-CLOCKS_PER_SEC* +crv-CX_LIMITED_RANGE crefvim.txt /*crv-CX_LIMITED_RANGE* +crv-DBL_DIG crefvim.txt /*crv-DBL_DIG* +crv-DBL_EPSILON crefvim.txt /*crv-DBL_EPSILON* +crv-DBL_MANT_DIG crefvim.txt /*crv-DBL_MANT_DIG* +crv-DBL_MAX crefvim.txt /*crv-DBL_MAX* +crv-DBL_MAX_10_EXP crefvim.txt /*crv-DBL_MAX_10_EXP* +crv-DBL_MAX_EXP crefvim.txt /*crv-DBL_MAX_EXP* +crv-DBL_MIN crefvim.txt /*crv-DBL_MIN* +crv-DBL_MIN_10_EXP crefvim.txt /*crv-DBL_MIN_10_EXP* +crv-DBL_MIN_EXP crefvim.txt /*crv-DBL_MIN_EXP* +crv-EDOM crefvim.txt /*crv-EDOM* +crv-EILSEQ crefvim.txt /*crv-EILSEQ* +crv-EOF crefvim.txt /*crv-EOF* +crv-ERANGE crefvim.txt /*crv-ERANGE* +crv-EXIT_FAILURE crefvim.txt /*crv-EXIT_FAILURE* +crv-EXIT_SUCCESS crefvim.txt /*crv-EXIT_SUCCESS* +crv-FENV_ACCESS crefvim.txt /*crv-FENV_ACCESS* +crv-FE_ALL_EXCEPT crefvim.txt /*crv-FE_ALL_EXCEPT* +crv-FE_DIVBYZERO crefvim.txt /*crv-FE_DIVBYZERO* +crv-FE_DOWNWARD crefvim.txt /*crv-FE_DOWNWARD* +crv-FE_INEXACT crefvim.txt /*crv-FE_INEXACT* +crv-FE_INVALID crefvim.txt /*crv-FE_INVALID* +crv-FE_OVERFLOW crefvim.txt /*crv-FE_OVERFLOW* +crv-FE_TONEAREST crefvim.txt /*crv-FE_TONEAREST* +crv-FE_TOWARDZERO crefvim.txt /*crv-FE_TOWARDZERO* +crv-FE_UNDERFLOW crefvim.txt /*crv-FE_UNDERFLOW* +crv-FE_UPWARD crefvim.txt /*crv-FE_UPWARD* +crv-FILE crefvim.txt /*crv-FILE* +crv-FILENAME_MAX crefvim.txt /*crv-FILENAME_MAX* +crv-FLT_DIG crefvim.txt /*crv-FLT_DIG* +crv-FLT_EPSILON crefvim.txt /*crv-FLT_EPSILON* +crv-FLT_MANT_DIG crefvim.txt /*crv-FLT_MANT_DIG* +crv-FLT_MAX crefvim.txt /*crv-FLT_MAX* +crv-FLT_MAX_10_EXP crefvim.txt /*crv-FLT_MAX_10_EXP* +crv-FLT_MAX_EXP crefvim.txt /*crv-FLT_MAX_EXP* +crv-FLT_MIN crefvim.txt /*crv-FLT_MIN* +crv-FLT_MIN_10_EXP crefvim.txt /*crv-FLT_MIN_10_EXP* +crv-FLT_MIN_EXP crefvim.txt /*crv-FLT_MIN_EXP* +crv-FLT_RADIX crefvim.txt /*crv-FLT_RADIX* +crv-FLT_ROUNDS crefvim.txt /*crv-FLT_ROUNDS* +crv-FOPEN_MAX crefvim.txt /*crv-FOPEN_MAX* +crv-FP_FAST_FMA crefvim.txt /*crv-FP_FAST_FMA* +crv-FP_FAST_FMAF crefvim.txt /*crv-FP_FAST_FMAF* +crv-FP_FAST_FMAL crefvim.txt /*crv-FP_FAST_FMAL* +crv-FP_ILOGB0 crefvim.txt /*crv-FP_ILOGB0* +crv-FP_ILOGBNAN crefvim.txt /*crv-FP_ILOGBNAN* +crv-HUGE_VAL crefvim.txt /*crv-HUGE_VAL* +crv-HUGE_VALF crefvim.txt /*crv-HUGE_VALF* +crv-HUGE_VALL crefvim.txt /*crv-HUGE_VALL* +crv-I crefvim.txt /*crv-I* +crv-INT16_C crefvim.txt /*crv-INT16_C* +crv-INT16_MAX crefvim.txt /*crv-INT16_MAX* +crv-INT16_MIN crefvim.txt /*crv-INT16_MIN* +crv-INT32_C crefvim.txt /*crv-INT32_C* +crv-INT32_MAX crefvim.txt /*crv-INT32_MAX* +crv-INT32_MIN crefvim.txt /*crv-INT32_MIN* +crv-INT64_C crefvim.txt /*crv-INT64_C* +crv-INT64_MAX crefvim.txt /*crv-INT64_MAX* +crv-INT64_MIN crefvim.txt /*crv-INT64_MIN* +crv-INT8_C crefvim.txt /*crv-INT8_C* +crv-INT8_MAX crefvim.txt /*crv-INT8_MAX* +crv-INT8_MIN crefvim.txt /*crv-INT8_MIN* +crv-INTMAX_C crefvim.txt /*crv-INTMAX_C* +crv-INTMAX_MAX crefvim.txt /*crv-INTMAX_MAX* +crv-INTMAX_MIN crefvim.txt /*crv-INTMAX_MIN* +crv-INTPTR_MAX crefvim.txt /*crv-INTPTR_MAX* +crv-INTPTR_MIN crefvim.txt /*crv-INTPTR_MIN* +crv-INT_FAST16_MAX crefvim.txt /*crv-INT_FAST16_MAX* +crv-INT_FAST16_MIN crefvim.txt /*crv-INT_FAST16_MIN* +crv-INT_FAST32_MAX crefvim.txt /*crv-INT_FAST32_MAX* +crv-INT_FAST32_MIN crefvim.txt /*crv-INT_FAST32_MIN* +crv-INT_FAST64_MAX crefvim.txt /*crv-INT_FAST64_MAX* +crv-INT_FAST64_MIN crefvim.txt /*crv-INT_FAST64_MIN* +crv-INT_FAST8_MAX crefvim.txt /*crv-INT_FAST8_MAX* +crv-INT_FAST8_MIN crefvim.txt /*crv-INT_FAST8_MIN* +crv-INT_LEAST16_MAX crefvim.txt /*crv-INT_LEAST16_MAX* +crv-INT_LEAST16_MIN crefvim.txt /*crv-INT_LEAST16_MIN* +crv-INT_LEAST32_MAX crefvim.txt /*crv-INT_LEAST32_MAX* +crv-INT_LEAST32_MIN crefvim.txt /*crv-INT_LEAST32_MIN* +crv-INT_LEAST64_MAX crefvim.txt /*crv-INT_LEAST64_MAX* +crv-INT_LEAST64_MIN crefvim.txt /*crv-INT_LEAST64_MIN* +crv-INT_LEAST8_MAX crefvim.txt /*crv-INT_LEAST8_MAX* +crv-INT_LEAST8_MIN crefvim.txt /*crv-INT_LEAST8_MIN* +crv-INT_MAX crefvim.txt /*crv-INT_MAX* +crv-INT_MIN crefvim.txt /*crv-INT_MIN* +crv-LC_ALL crefvim.txt /*crv-LC_ALL* +crv-LC_COLLATE crefvim.txt /*crv-LC_COLLATE* +crv-LC_CTYPE crefvim.txt /*crv-LC_CTYPE* +crv-LC_MONETARY crefvim.txt /*crv-LC_MONETARY* +crv-LC_NUMERIC crefvim.txt /*crv-LC_NUMERIC* +crv-LDBL_DIG crefvim.txt /*crv-LDBL_DIG* +crv-LDBL_EPSILON crefvim.txt /*crv-LDBL_EPSILON* +crv-LDBL_MANT_DIG crefvim.txt /*crv-LDBL_MANT_DIG* +crv-LDBL_MAX crefvim.txt /*crv-LDBL_MAX* +crv-LDBL_MAX_10_EXP crefvim.txt /*crv-LDBL_MAX_10_EXP* +crv-LDBL_MAX_EXP crefvim.txt /*crv-LDBL_MAX_EXP* +crv-LDBL_MIN crefvim.txt /*crv-LDBL_MIN* +crv-LDBL_MIN_10_EXP crefvim.txt /*crv-LDBL_MIN_10_EXP* +crv-LDBL_MIN_EXP crefvim.txt /*crv-LDBL_MIN_EXP* +crv-LONG_LONG_MAX crefvim.txt /*crv-LONG_LONG_MAX* +crv-LONG_LONG_MIN crefvim.txt /*crv-LONG_LONG_MIN* +crv-LONG_MAX crefvim.txt /*crv-LONG_MAX* +crv-LONG_MIN crefvim.txt /*crv-LONG_MIN* +crv-L_tmpnam crefvim.txt /*crv-L_tmpnam* +crv-MB_CUR_MAX crefvim.txt /*crv-MB_CUR_MAX* +crv-MB_LEN_MAX crefvim.txt /*crv-MB_LEN_MAX* +crv-NDEBUG crefvim.txt /*crv-NDEBUG* +crv-NULL crefvim.txt /*crv-NULL* +crv-NULL2 crefvim.txt /*crv-NULL2* +crv-NULL3 crefvim.txt /*crv-NULL3* +crv-NULL4 crefvim.txt /*crv-NULL4* +crv-NULL5 crefvim.txt /*crv-NULL5* +crv-NULL6 crefvim.txt /*crv-NULL6* +crv-PRIXFASTN crefvim.txt /*crv-PRIXFASTN* +crv-PRIXLEASTN crefvim.txt /*crv-PRIXLEASTN* +crv-PRIXMAX crefvim.txt /*crv-PRIXMAX* +crv-PRIXN crefvim.txt /*crv-PRIXN* +crv-PRIXPTR crefvim.txt /*crv-PRIXPTR* +crv-PRIdFASTN crefvim.txt /*crv-PRIdFASTN* +crv-PRIdLEASTN crefvim.txt /*crv-PRIdLEASTN* +crv-PRIdMAX crefvim.txt /*crv-PRIdMAX* +crv-PRIdN crefvim.txt /*crv-PRIdN* +crv-PRIdPTR crefvim.txt /*crv-PRIdPTR* +crv-PRIiFASTN crefvim.txt /*crv-PRIiFASTN* +crv-PRIiLEASTN crefvim.txt /*crv-PRIiLEASTN* +crv-PRIiMAX crefvim.txt /*crv-PRIiMAX* +crv-PRIiN crefvim.txt /*crv-PRIiN* +crv-PRIiPTR crefvim.txt /*crv-PRIiPTR* +crv-PRIoFASTN crefvim.txt /*crv-PRIoFASTN* +crv-PRIoLEASTN crefvim.txt /*crv-PRIoLEASTN* +crv-PRIoMAX crefvim.txt /*crv-PRIoMAX* +crv-PRIoN crefvim.txt /*crv-PRIoN* +crv-PRIoPTR crefvim.txt /*crv-PRIoPTR* +crv-PRIuFASTN crefvim.txt /*crv-PRIuFASTN* +crv-PRIuLEASTN crefvim.txt /*crv-PRIuLEASTN* +crv-PRIuMAX crefvim.txt /*crv-PRIuMAX* +crv-PRIuN crefvim.txt /*crv-PRIuN* +crv-PRIuPTR crefvim.txt /*crv-PRIuPTR* +crv-PRIxFASTN crefvim.txt /*crv-PRIxFASTN* +crv-PRIxLEASTN crefvim.txt /*crv-PRIxLEASTN* +crv-PRIxMAX crefvim.txt /*crv-PRIxMAX* +crv-PRIxN crefvim.txt /*crv-PRIxN* +crv-PRIxPTR crefvim.txt /*crv-PRIxPTR* +crv-PTRDIFF_MAX crefvim.txt /*crv-PTRDIFF_MAX* +crv-PTRDIFF_MIN crefvim.txt /*crv-PTRDIFF_MIN* +crv-PreInc crefvim.txt /*crv-PreInc* +crv-RAND_MAX crefvim.txt /*crv-RAND_MAX* +crv-SCHAR_MAX crefvim.txt /*crv-SCHAR_MAX* +crv-SCHAR_MIN crefvim.txt /*crv-SCHAR_MIN* +crv-SCNdFASTN crefvim.txt /*crv-SCNdFASTN* +crv-SCNdLEASTN crefvim.txt /*crv-SCNdLEASTN* +crv-SCNdMAX crefvim.txt /*crv-SCNdMAX* +crv-SCNdN crefvim.txt /*crv-SCNdN* +crv-SCNdPTR crefvim.txt /*crv-SCNdPTR* +crv-SCNiFASTN crefvim.txt /*crv-SCNiFASTN* +crv-SCNiLEASTN crefvim.txt /*crv-SCNiLEASTN* +crv-SCNiMAX crefvim.txt /*crv-SCNiMAX* +crv-SCNiN crefvim.txt /*crv-SCNiN* +crv-SCNiPTR crefvim.txt /*crv-SCNiPTR* +crv-SCNoFASTN crefvim.txt /*crv-SCNoFASTN* +crv-SCNoLEASTN crefvim.txt /*crv-SCNoLEASTN* +crv-SCNoMAX crefvim.txt /*crv-SCNoMAX* +crv-SCNoN crefvim.txt /*crv-SCNoN* +crv-SCNoPTR crefvim.txt /*crv-SCNoPTR* +crv-SCNuFASTN crefvim.txt /*crv-SCNuFASTN* +crv-SCNuLEASTN crefvim.txt /*crv-SCNuLEASTN* +crv-SCNuMAX crefvim.txt /*crv-SCNuMAX* +crv-SCNuN crefvim.txt /*crv-SCNuN* +crv-SCNuPTR crefvim.txt /*crv-SCNuPTR* +crv-SCNxFASTN crefvim.txt /*crv-SCNxFASTN* +crv-SCNxLEASTN crefvim.txt /*crv-SCNxLEASTN* +crv-SCNxMAX crefvim.txt /*crv-SCNxMAX* +crv-SCNxN crefvim.txt /*crv-SCNxN* +crv-SCNxPTR crefvim.txt /*crv-SCNxPTR* +crv-SEEK_CUR crefvim.txt /*crv-SEEK_CUR* +crv-SEEK_END crefvim.txt /*crv-SEEK_END* +crv-SEEK_SET crefvim.txt /*crv-SEEK_SET* +crv-SHRT_MAX crefvim.txt /*crv-SHRT_MAX* +crv-SHRT_MIN crefvim.txt /*crv-SHRT_MIN* +crv-SIGABRT crefvim.txt /*crv-SIGABRT* +crv-SIGFPE crefvim.txt /*crv-SIGFPE* +crv-SIGILL crefvim.txt /*crv-SIGILL* +crv-SIGINT crefvim.txt /*crv-SIGINT* +crv-SIGSEGV crefvim.txt /*crv-SIGSEGV* +crv-SIGTERM crefvim.txt /*crv-SIGTERM* +crv-SIG_ATOMIC_MAX crefvim.txt /*crv-SIG_ATOMIC_MAX* +crv-SIG_ATOMIC_MIN crefvim.txt /*crv-SIG_ATOMIC_MIN* +crv-SIG_DFL crefvim.txt /*crv-SIG_DFL* +crv-SIG_ERR crefvim.txt /*crv-SIG_ERR* +crv-SIG_IGN crefvim.txt /*crv-SIG_IGN* +crv-SIZE_MAX crefvim.txt /*crv-SIZE_MAX* +crv-TMP_MAX crefvim.txt /*crv-TMP_MAX* +crv-UCHAR_MAX crefvim.txt /*crv-UCHAR_MAX* +crv-UINT16_C crefvim.txt /*crv-UINT16_C* +crv-UINT16_MAX crefvim.txt /*crv-UINT16_MAX* +crv-UINT32_C crefvim.txt /*crv-UINT32_C* +crv-UINT32_MAX crefvim.txt /*crv-UINT32_MAX* +crv-UINT64_C crefvim.txt /*crv-UINT64_C* +crv-UINT64_MAX crefvim.txt /*crv-UINT64_MAX* +crv-UINT8_C crefvim.txt /*crv-UINT8_C* +crv-UINT8_MAX crefvim.txt /*crv-UINT8_MAX* +crv-UINTMAX_C crefvim.txt /*crv-UINTMAX_C* +crv-UINTMAX_MAX crefvim.txt /*crv-UINTMAX_MAX* +crv-UINTPTR_MAX crefvim.txt /*crv-UINTPTR_MAX* +crv-UINT_FAST16_MAX crefvim.txt /*crv-UINT_FAST16_MAX* +crv-UINT_FAST32_MAX crefvim.txt /*crv-UINT_FAST32_MAX* +crv-UINT_FAST64_MAX crefvim.txt /*crv-UINT_FAST64_MAX* +crv-UINT_FAST8_MAX crefvim.txt /*crv-UINT_FAST8_MAX* +crv-UINT_LEAST16_MAX crefvim.txt /*crv-UINT_LEAST16_MAX* +crv-UINT_LEAST32_MAX crefvim.txt /*crv-UINT_LEAST32_MAX* +crv-UINT_LEAST64_MAX crefvim.txt /*crv-UINT_LEAST64_MAX* +crv-UINT_LEAST8_MAX crefvim.txt /*crv-UINT_LEAST8_MAX* +crv-UINT_MAX crefvim.txt /*crv-UINT_MAX* +crv-ULONG_LONG_MAX crefvim.txt /*crv-ULONG_LONG_MAX* +crv-ULONG_MAX crefvim.txt /*crv-ULONG_MAX* +crv-USHRT_MAX crefvim.txt /*crv-USHRT_MAX* +crv-WCHAR_MAX crefvim.txt /*crv-WCHAR_MAX* +crv-WCHAR_MAX2 crefvim.txt /*crv-WCHAR_MAX2* +crv-WCHAR_MIN crefvim.txt /*crv-WCHAR_MIN* +crv-WCHAR_MIN2 crefvim.txt /*crv-WCHAR_MIN2* +crv-WEOF crefvim.txt /*crv-WEOF* +crv-WEOF2 crefvim.txt /*crv-WEOF2* +crv-WINT_MAX crefvim.txt /*crv-WINT_MAX* +crv-WINT_MIN crefvim.txt /*crv-WINT_MIN* +crv-_Bool crefvim.txt /*crv-_Bool* +crv-_Complex crefvim.txt /*crv-_Complex* +crv-_Complex_I crefvim.txt /*crv-_Complex_I* +crv-_Exit crefvim.txt /*crv-_Exit* +crv-_IOFBF crefvim.txt /*crv-_IOFBF* +crv-_IOLBF crefvim.txt /*crv-_IOLBF* +crv-_IONBF crefvim.txt /*crv-_IONBF* +crv-_Imaginary crefvim.txt /*crv-_Imaginary* +crv-_Imaginary_I crefvim.txt /*crv-_Imaginary_I* +crv-__DATA__ crefvim.txt /*crv-__DATA__* +crv-__FILE__ crefvim.txt /*crv-__FILE__* +crv-__LINE__ crefvim.txt /*crv-__LINE__* +crv-__STDC_FORMAT_MACROS crefvim.txt /*crv-__STDC_FORMAT_MACROS* +crv-__STDC_HOSTED__ crefvim.txt /*crv-__STDC_HOSTED__* +crv-__STDC_IEC_559_COMPLEX__ crefvim.txt /*crv-__STDC_IEC_559_COMPLEX__* +crv-__STDC_IEC_559__ crefvim.txt /*crv-__STDC_IEC_559__* +crv-__STDC_ISO10646__ crefvim.txt /*crv-__STDC_ISO10646__* +crv-__STDC_LIMIT_MACROS crefvim.txt /*crv-__STDC_LIMIT_MACROS* +crv-__STDC_VERSION__ crefvim.txt /*crv-__STDC_VERSION__* +crv-__STDC__ crefvim.txt /*crv-__STDC__* +crv-__TIME__ crefvim.txt /*crv-__TIME__* +crv-__bool_true_false_are_defined crefvim.txt /*crv-__bool_true_false_are_defined* +crv-abort crefvim.txt /*crv-abort* +crv-abs crefvim.txt /*crv-abs* +crv-acos crefvim.txt /*crv-acos* +crv-acosf crefvim.txt /*crv-acosf* +crv-acosh crefvim.txt /*crv-acosh* +crv-acoshf crefvim.txt /*crv-acoshf* +crv-acoshl crefvim.txt /*crv-acoshl* +crv-acosl crefvim.txt /*crv-acosl* +crv-asctime crefvim.txt /*crv-asctime* +crv-asin crefvim.txt /*crv-asin* +crv-asinf crefvim.txt /*crv-asinf* +crv-asinh crefvim.txt /*crv-asinh* +crv-asinhf crefvim.txt /*crv-asinhf* +crv-asinhl crefvim.txt /*crv-asinhl* +crv-asinl crefvim.txt /*crv-asinl* +crv-assert crefvim.txt /*crv-assert* +crv-atan crefvim.txt /*crv-atan* +crv-atan2 crefvim.txt /*crv-atan2* +crv-atan2f crefvim.txt /*crv-atan2f* +crv-atan2l crefvim.txt /*crv-atan2l* +crv-atanf crefvim.txt /*crv-atanf* +crv-atanh crefvim.txt /*crv-atanh* +crv-atanhf crefvim.txt /*crv-atanhf* +crv-atanhl crefvim.txt /*crv-atanhl* +crv-atanl crefvim.txt /*crv-atanl* +crv-atexit crefvim.txt /*crv-atexit* +crv-atof crefvim.txt /*crv-atof* +crv-atoi crefvim.txt /*crv-atoi* +crv-atol crefvim.txt /*crv-atol* +crv-atoll crefvim.txt /*crv-atoll* +crv-auto crefvim.txt /*crv-auto* +crv-bibliography crefvim.txt /*crv-bibliography* +crv-bool crefvim.txt /*crv-bool* +crv-break crefvim.txt /*crv-break* +crv-bsearch crefvim.txt /*crv-bsearch* +crv-btowc crefvim.txt /*crv-btowc* +crv-cabs crefvim.txt /*crv-cabs* +crv-cabsf crefvim.txt /*crv-cabsf* +crv-cabsl crefvim.txt /*crv-cabsl* +crv-cacos crefvim.txt /*crv-cacos* +crv-cacosf crefvim.txt /*crv-cacosf* +crv-cacosh crefvim.txt /*crv-cacosh* +crv-cacoshf crefvim.txt /*crv-cacoshf* +crv-cacoshl crefvim.txt /*crv-cacoshl* +crv-cacosl crefvim.txt /*crv-cacosl* +crv-calloc crefvim.txt /*crv-calloc* +crv-carg crefvim.txt /*crv-carg* +crv-cargf crefvim.txt /*crv-cargf* +crv-cargl crefvim.txt /*crv-cargl* +crv-case crefvim.txt /*crv-case* +crv-casin crefvim.txt /*crv-casin* +crv-casinf crefvim.txt /*crv-casinf* +crv-casinh crefvim.txt /*crv-casinh* +crv-casinhf crefvim.txt /*crv-casinhf* +crv-casinhl crefvim.txt /*crv-casinhl* +crv-casinl crefvim.txt /*crv-casinl* +crv-catan crefvim.txt /*crv-catan* +crv-catanf crefvim.txt /*crv-catanf* +crv-catanh crefvim.txt /*crv-catanh* +crv-catanhf crefvim.txt /*crv-catanhf* +crv-catanhl crefvim.txt /*crv-catanhl* +crv-catanl crefvim.txt /*crv-catanl* +crv-cbrt crefvim.txt /*crv-cbrt* +crv-cbrtf crefvim.txt /*crv-cbrtf* +crv-cbrtl crefvim.txt /*crv-cbrtl* +crv-ccos crefvim.txt /*crv-ccos* +crv-ccosf crefvim.txt /*crv-ccosf* +crv-ccosfh crefvim.txt /*crv-ccosfh* +crv-ccosh crefvim.txt /*crv-ccosh* +crv-ccosl crefvim.txt /*crv-ccosl* +crv-ccoslh crefvim.txt /*crv-ccoslh* +crv-ceil crefvim.txt /*crv-ceil* +crv-ceilf crefvim.txt /*crv-ceilf* +crv-ceill crefvim.txt /*crv-ceill* +crv-cexp crefvim.txt /*crv-cexp* +crv-cexpf crefvim.txt /*crv-cexpf* +crv-cexpl crefvim.txt /*crv-cexpl* +crv-char crefvim.txt /*crv-char* +crv-cimag crefvim.txt /*crv-cimag* +crv-cimagf crefvim.txt /*crv-cimagf* +crv-cimagl crefvim.txt /*crv-cimagl* +crv-clearerr crefvim.txt /*crv-clearerr* +crv-clock crefvim.txt /*crv-clock* +crv-clock_t crefvim.txt /*crv-clock_t* +crv-clog crefvim.txt /*crv-clog* +crv-clogf crefvim.txt /*crv-clogf* +crv-clogl crefvim.txt /*crv-clogl* +crv-complex crefvim.txt /*crv-complex* +crv-conj crefvim.txt /*crv-conj* +crv-conjf crefvim.txt /*crv-conjf* +crv-conjl crefvim.txt /*crv-conjl* +crv-const crefvim.txt /*crv-const* +crv-continue crefvim.txt /*crv-continue* +crv-copysign crefvim.txt /*crv-copysign* +crv-copysignf crefvim.txt /*crv-copysignf* +crv-copysignl crefvim.txt /*crv-copysignl* +crv-cos crefvim.txt /*crv-cos* +crv-cosf crefvim.txt /*crv-cosf* +crv-cosh crefvim.txt /*crv-cosh* +crv-coshf crefvim.txt /*crv-coshf* +crv-coshl crefvim.txt /*crv-coshl* +crv-cosl crefvim.txt /*crv-cosl* +crv-cpow crefvim.txt /*crv-cpow* +crv-cpowf crefvim.txt /*crv-cpowf* +crv-cpowl crefvim.txt /*crv-cpowl* +crv-cproj crefvim.txt /*crv-cproj* +crv-cprojf crefvim.txt /*crv-cprojf* +crv-cprojl crefvim.txt /*crv-cprojl* +crv-creal crefvim.txt /*crv-creal* +crv-crealf crefvim.txt /*crv-crealf* +crv-creall crefvim.txt /*crv-creall* +crv-csin crefvim.txt /*crv-csin* +crv-csinf crefvim.txt /*crv-csinf* +crv-csinh crefvim.txt /*crv-csinh* +crv-csinhf crefvim.txt /*crv-csinhf* +crv-csinhl crefvim.txt /*crv-csinhl* +crv-csinl crefvim.txt /*crv-csinl* +crv-csqrt crefvim.txt /*crv-csqrt* +crv-csqrtf crefvim.txt /*crv-csqrtf* +crv-csqrtl crefvim.txt /*crv-csqrtl* +crv-ctan crefvim.txt /*crv-ctan* +crv-ctanf crefvim.txt /*crv-ctanf* +crv-ctanh crefvim.txt /*crv-ctanh* +crv-ctanhf crefvim.txt /*crv-ctanhf* +crv-ctanhl crefvim.txt /*crv-ctanhl* +crv-ctanl crefvim.txt /*crv-ctanl* +crv-ctime crefvim.txt /*crv-ctime* +crv-currency_symbol crefvim.txt /*crv-currency_symbol* +crv-datatypes crefvim.txt /*crv-datatypes* +crv-decimal_point crefvim.txt /*crv-decimal_point* +crv-default crefvim.txt /*crv-default* +crv-defined crefvim.txt /*crv-defined* +crv-dif_t crefvim.txt /*crv-dif_t* +crv-difftime crefvim.txt /*crv-difftime* +crv-div crefvim.txt /*crv-div* +crv-do crefvim.txt /*crv-do* +crv-double crefvim.txt /*crv-double* +crv-dtArrays crefvim.txt /*crv-dtArrays* +crv-dtBitFields crefvim.txt /*crv-dtBitFields* +crv-dtCompleteArrayDecl crefvim.txt /*crv-dtCompleteArrayDecl* +crv-dtConstChar crefvim.txt /*crv-dtConstChar* +crv-dtConstFloat crefvim.txt /*crv-dtConstFloat* +crv-dtConstInt crefvim.txt /*crv-dtConstInt* +crv-dtConstants crefvim.txt /*crv-dtConstants* +crv-dtEnumerate crefvim.txt /*crv-dtEnumerate* +crv-dtFormats crefvim.txt /*crv-dtFormats* +crv-dtFormatsFPBasics crefvim.txt /*crv-dtFormatsFPBasics* +crv-dtFormatsFPDouble crefvim.txt /*crv-dtFormatsFPDouble* +crv-dtFormatsFPFloat crefvim.txt /*crv-dtFormatsFPFloat* +crv-dtFormatsFPInfinity crefvim.txt /*crv-dtFormatsFPInfinity* +crv-dtFormatsFPLDouble crefvim.txt /*crv-dtFormatsFPLDouble* +crv-dtFormatsFPNaN crefvim.txt /*crv-dtFormatsFPNaN* +crv-dtFormatsFPOp crefvim.txt /*crv-dtFormatsFPOp* +crv-dtFormatsFPSDenorm crefvim.txt /*crv-dtFormatsFPSDenorm* +crv-dtFormatsFPTypes crefvim.txt /*crv-dtFormatsFPTypes* +crv-dtFormatsFPValues crefvim.txt /*crv-dtFormatsFPValues* +crv-dtFormatsFPZero crefvim.txt /*crv-dtFormatsFPZero* +crv-dtFormatsFloat crefvim.txt /*crv-dtFormatsFloat* +crv-dtFormatsInt crefvim.txt /*crv-dtFormatsInt* +crv-dtOverview crefvim.txt /*crv-dtOverview* +crv-dtPointers crefvim.txt /*crv-dtPointers* +crv-dtPtrArithmetics crefvim.txt /*crv-dtPtrArithmetics* +crv-dtPtrFuncs crefvim.txt /*crv-dtPtrFuncs* +crv-dtPtrVars crefvim.txt /*crv-dtPtrVars* +crv-dtQualifiers crefvim.txt /*crv-dtQualifiers* +crv-dtSizeRange crefvim.txt /*crv-dtSizeRange* +crv-dtStorageClasses crefvim.txt /*crv-dtStorageClasses* +crv-dtStrings crefvim.txt /*crv-dtStrings* +crv-dtStructAccess crefvim.txt /*crv-dtStructAccess* +crv-dtStructDecl crefvim.txt /*crv-dtStructDecl* +crv-dtStructDef crefvim.txt /*crv-dtStructDef* +crv-dtStructInit crefvim.txt /*crv-dtStructInit* +crv-dtStructurs crefvim.txt /*crv-dtStructurs* +crv-dtTypeCast crefvim.txt /*crv-dtTypeCast* +crv-dtTypeCastExpl crefvim.txt /*crv-dtTypeCastExpl* +crv-dtTypeCastImpl crefvim.txt /*crv-dtTypeCastImpl* +crv-dtTypeDef crefvim.txt /*crv-dtTypeDef* +crv-dtTypeGrouping crefvim.txt /*crv-dtTypeGrouping* +crv-dtTypeSpecifiers crefvim.txt /*crv-dtTypeSpecifiers* +crv-dtUnionAccess crefvim.txt /*crv-dtUnionAccess* +crv-dtUnionDecl crefvim.txt /*crv-dtUnionDecl* +crv-dtUnionDef crefvim.txt /*crv-dtUnionDef* +crv-dtUnionInit crefvim.txt /*crv-dtUnionInit* +crv-dtUnions crefvim.txt /*crv-dtUnions* +crv-dtVoid crefvim.txt /*crv-dtVoid* +crv-else crefvim.txt /*crv-else* +crv-enum crefvim.txt /*crv-enum* +crv-erf crefvim.txt /*crv-erf* +crv-erfc crefvim.txt /*crv-erfc* +crv-erfcf crefvim.txt /*crv-erfcf* +crv-erfcl crefvim.txt /*crv-erfcl* +crv-erff crefvim.txt /*crv-erff* +crv-erfl crefvim.txt /*crv-erfl* +crv-errno crefvim.txt /*crv-errno* +crv-exit crefvim.txt /*crv-exit* +crv-exp crefvim.txt /*crv-exp* +crv-exp2 crefvim.txt /*crv-exp2* +crv-exp2f crefvim.txt /*crv-exp2f* +crv-exp2l crefvim.txt /*crv-exp2l* +crv-expf crefvim.txt /*crv-expf* +crv-expl crefvim.txt /*crv-expl* +crv-expm1 crefvim.txt /*crv-expm1* +crv-expm1f crefvim.txt /*crv-expm1f* +crv-expm1l crefvim.txt /*crv-expm1l* +crv-extern crefvim.txt /*crv-extern* +crv-fabs crefvim.txt /*crv-fabs* +crv-fabsf crefvim.txt /*crv-fabsf* +crv-fabsl crefvim.txt /*crv-fabsl* +crv-false crefvim.txt /*crv-false* +crv-fclose crefvim.txt /*crv-fclose* +crv-fdim crefvim.txt /*crv-fdim* +crv-fdimf crefvim.txt /*crv-fdimf* +crv-fdiml crefvim.txt /*crv-fdiml* +crv-feclearexcept crefvim.txt /*crv-feclearexcept* +crv-fegetenv crefvim.txt /*crv-fegetenv* +crv-fegetexceptflag crefvim.txt /*crv-fegetexceptflag* +crv-fegetround crefvim.txt /*crv-fegetround* +crv-feholdexcept crefvim.txt /*crv-feholdexcept* +crv-fentv_t crefvim.txt /*crv-fentv_t* +crv-feof crefvim.txt /*crv-feof* +crv-feraiseexcept crefvim.txt /*crv-feraiseexcept* +crv-ferror crefvim.txt /*crv-ferror* +crv-fesetenv crefvim.txt /*crv-fesetenv* +crv-fesetexceptflag crefvim.txt /*crv-fesetexceptflag* +crv-fesetround crefvim.txt /*crv-fesetround* +crv-fetestexcept crefvim.txt /*crv-fetestexcept* +crv-feupdateenv crefvim.txt /*crv-feupdateenv* +crv-fflush crefvim.txt /*crv-fflush* +crv-fgetc crefvim.txt /*crv-fgetc* +crv-fgetpos crefvim.txt /*crv-fgetpos* +crv-fgets crefvim.txt /*crv-fgets* +crv-fgetwc crefvim.txt /*crv-fgetwc* +crv-fgetws crefvim.txt /*crv-fgetws* +crv-float crefvim.txt /*crv-float* +crv-floor crefvim.txt /*crv-floor* +crv-floorf crefvim.txt /*crv-floorf* +crv-floorl crefvim.txt /*crv-floorl* +crv-fma crefvim.txt /*crv-fma* +crv-fmaf crefvim.txt /*crv-fmaf* +crv-fmal crefvim.txt /*crv-fmal* +crv-fmax crefvim.txt /*crv-fmax* +crv-fmaxf crefvim.txt /*crv-fmaxf* +crv-fmaxl crefvim.txt /*crv-fmaxl* +crv-fmin crefvim.txt /*crv-fmin* +crv-fminf crefvim.txt /*crv-fminf* +crv-fminl crefvim.txt /*crv-fminl* +crv-fmod crefvim.txt /*crv-fmod* +crv-fmodf crefvim.txt /*crv-fmodf* +crv-fmodl crefvim.txt /*crv-fmodl* +crv-fopen crefvim.txt /*crv-fopen* +crv-for crefvim.txt /*crv-for* +crv-fpclassify crefvim.txt /*crv-fpclassify* +crv-fpos_t crefvim.txt /*crv-fpos_t* +crv-fprintf crefvim.txt /*crv-fprintf* +crv-fputc crefvim.txt /*crv-fputc* +crv-fputs crefvim.txt /*crv-fputs* +crv-fputwc crefvim.txt /*crv-fputwc* +crv-fputws crefvim.txt /*crv-fputws* +crv-frac_digits crefvim.txt /*crv-frac_digits* +crv-fread crefvim.txt /*crv-fread* +crv-free crefvim.txt /*crv-free* +crv-freopen crefvim.txt /*crv-freopen* +crv-frexp crefvim.txt /*crv-frexp* +crv-frexpf crefvim.txt /*crv-frexpf* +crv-frexpl crefvim.txt /*crv-frexpl* +crv-fscanf crefvim.txt /*crv-fscanf* +crv-fseek crefvim.txt /*crv-fseek* +crv-fsetpos crefvim.txt /*crv-fsetpos* +crv-ftell crefvim.txt /*crv-ftell* +crv-fuConversion crefvim.txt /*crv-fuConversion* +crv-fuDefVarPara crefvim.txt /*crv-fuDefVarPara* +crv-fuDefinition crefvim.txt /*crv-fuDefinition* +crv-fuMain crefvim.txt /*crv-fuMain* +crv-fuPrototype crefvim.txt /*crv-fuPrototype* +crv-fuSpecifier crefvim.txt /*crv-fuSpecifier* +crv-fuStorageClasses crefvim.txt /*crv-fuStorageClasses* +crv-functions crefvim.txt /*crv-functions* +crv-fwide crefvim.txt /*crv-fwide* +crv-fwprintf crefvim.txt /*crv-fwprintf* +crv-fwrite crefvim.txt /*crv-fwrite* +crv-fwscanf crefvim.txt /*crv-fwscanf* +crv-getc crefvim.txt /*crv-getc* +crv-getchar crefvim.txt /*crv-getchar* +crv-getenv crefvim.txt /*crv-getenv* +crv-gets crefvim.txt /*crv-gets* +crv-getwc crefvim.txt /*crv-getwc* +crv-getwchar crefvim.txt /*crv-getwchar* +crv-gloAlignment crefvim.txt /*crv-gloAlignment* +crv-gloArgument crefvim.txt /*crv-gloArgument* +crv-gloArray crefvim.txt /*crv-gloArray* +crv-gloBinary crefvim.txt /*crv-gloBinary* +crv-gloBlock crefvim.txt /*crv-gloBlock* +crv-gloCompState crefvim.txt /*crv-gloCompState* +crv-gloDataType crefvim.txt /*crv-gloDataType* +crv-gloDeclaration crefvim.txt /*crv-gloDeclaration* +crv-gloDefinition crefvim.txt /*crv-gloDefinition* +crv-gloExpression crefvim.txt /*crv-gloExpression* +crv-gloIdentifier crefvim.txt /*crv-gloIdentifier* +crv-gloLifetime crefvim.txt /*crv-gloLifetime* +crv-gloLinkage crefvim.txt /*crv-gloLinkage* +crv-gloLvalue crefvim.txt /*crv-gloLvalue* +crv-gloLvalueMod crefvim.txt /*crv-gloLvalueMod* +crv-gloMacro crefvim.txt /*crv-gloMacro* +crv-gloObject crefvim.txt /*crv-gloObject* +crv-gloOpBinary crefvim.txt /*crv-gloOpBinary* +crv-gloOpUnary crefvim.txt /*crv-gloOpUnary* +crv-gloOperand crefvim.txt /*crv-gloOperand* +crv-gloOperator crefvim.txt /*crv-gloOperator* +crv-gloParameter crefvim.txt /*crv-gloParameter* +crv-gloPointer crefvim.txt /*crv-gloPointer* +crv-gloPreprocessor crefvim.txt /*crv-gloPreprocessor* +crv-gloPromote crefvim.txt /*crv-gloPromote* +crv-gloPrototype crefvim.txt /*crv-gloPrototype* +crv-gloRvalue crefvim.txt /*crv-gloRvalue* +crv-gloScope crefvim.txt /*crv-gloScope* +crv-gloSemantics crefvim.txt /*crv-gloSemantics* +crv-gloSideEffect crefvim.txt /*crv-gloSideEffect* +crv-gloSignExtension crefvim.txt /*crv-gloSignExtension* +crv-gloStatement crefvim.txt /*crv-gloStatement* +crv-gloStructure crefvim.txt /*crv-gloStructure* +crv-gloSyntax crefvim.txt /*crv-gloSyntax* +crv-gloToken crefvim.txt /*crv-gloToken* +crv-gloTrueFalse crefvim.txt /*crv-gloTrueFalse* +crv-gloType crefvim.txt /*crv-gloType* +crv-gloTypeCast crefvim.txt /*crv-gloTypeCast* +crv-gloTypeIncomplete crefvim.txt /*crv-gloTypeIncomplete* +crv-gloUnary crefvim.txt /*crv-gloUnary* +crv-gloVariable crefvim.txt /*crv-gloVariable* +crv-gloWhiteSpace crefvim.txt /*crv-gloWhiteSpace* +crv-glossary crefvim.txt /*crv-glossary* +crv-gmtime crefvim.txt /*crv-gmtime* +crv-goto crefvim.txt /*crv-goto* +crv-grouping crefvim.txt /*crv-grouping* +crv-hypot crefvim.txt /*crv-hypot* +crv-hypotf crefvim.txt /*crv-hypotf* +crv-hypotl crefvim.txt /*crv-hypotl* +crv-if crefvim.txt /*crv-if* +crv-ilogb crefvim.txt /*crv-ilogb* +crv-ilogbf crefvim.txt /*crv-ilogbf* +crv-ilogbl crefvim.txt /*crv-ilogbl* +crv-imaginary crefvim.txt /*crv-imaginary* +crv-imaxabs crefvim.txt /*crv-imaxabs* +crv-imaxdiv crefvim.txt /*crv-imaxdiv* +crv-imaxdiv_t crefvim.txt /*crv-imaxdiv_t* +crv-inline crefvim.txt /*crv-inline* +crv-int crefvim.txt /*crv-int* +crv-int16_t crefvim.txt /*crv-int16_t* +crv-int32_t crefvim.txt /*crv-int32_t* +crv-int64_t crefvim.txt /*crv-int64_t* +crv-int8_t crefvim.txt /*crv-int8_t* +crv-int_curr_symbol crefvim.txt /*crv-int_curr_symbol* +crv-int_fast16_t crefvim.txt /*crv-int_fast16_t* +crv-int_fast32_t crefvim.txt /*crv-int_fast32_t* +crv-int_fast64_t crefvim.txt /*crv-int_fast64_t* +crv-int_fast8_t crefvim.txt /*crv-int_fast8_t* +crv-int_frac_digits crefvim.txt /*crv-int_frac_digits* +crv-int_least16_t crefvim.txt /*crv-int_least16_t* +crv-int_least32_t crefvim.txt /*crv-int_least32_t* +crv-int_least64_t crefvim.txt /*crv-int_least64_t* +crv-int_least8_t crefvim.txt /*crv-int_least8_t* +crv-int_n_cs_precedes crefvim.txt /*crv-int_n_cs_precedes* +crv-int_n_sep_by_space crefvim.txt /*crv-int_n_sep_by_space* +crv-int_n_sign_posn crefvim.txt /*crv-int_n_sign_posn* +crv-int_p_cs_precedes crefvim.txt /*crv-int_p_cs_precedes* +crv-int_p_sep_by_space crefvim.txt /*crv-int_p_sep_by_space* +crv-int_p_sign_posn crefvim.txt /*crv-int_p_sign_posn* +crv-intmax_t crefvim.txt /*crv-intmax_t* +crv-intptr_t crefvim.txt /*crv-intptr_t* +crv-intro crefvim.txt /*crv-intro* +crv-isalnum crefvim.txt /*crv-isalnum* +crv-isalpha crefvim.txt /*crv-isalpha* +crv-isblank crefvim.txt /*crv-isblank* +crv-iscntrl crefvim.txt /*crv-iscntrl* +crv-isdigit crefvim.txt /*crv-isdigit* +crv-isfinite crefvim.txt /*crv-isfinite* +crv-isgraph crefvim.txt /*crv-isgraph* +crv-isgreater crefvim.txt /*crv-isgreater* +crv-isgreaterequal crefvim.txt /*crv-isgreaterequal* +crv-isinf crefvim.txt /*crv-isinf* +crv-isless crefvim.txt /*crv-isless* +crv-islessequal crefvim.txt /*crv-islessequal* +crv-islessgreater crefvim.txt /*crv-islessgreater* +crv-islower crefvim.txt /*crv-islower* +crv-isnan crefvim.txt /*crv-isnan* +crv-isnormal crefvim.txt /*crv-isnormal* +crv-isprint crefvim.txt /*crv-isprint* +crv-ispunct crefvim.txt /*crv-ispunct* +crv-isspace crefvim.txt /*crv-isspace* +crv-isunordered crefvim.txt /*crv-isunordered* +crv-isupper crefvim.txt /*crv-isupper* +crv-iswalnum crefvim.txt /*crv-iswalnum* +crv-iswalpha crefvim.txt /*crv-iswalpha* +crv-iswblank crefvim.txt /*crv-iswblank* +crv-iswcntrl crefvim.txt /*crv-iswcntrl* +crv-iswctype crefvim.txt /*crv-iswctype* +crv-iswdigit crefvim.txt /*crv-iswdigit* +crv-iswgraph crefvim.txt /*crv-iswgraph* +crv-iswlower crefvim.txt /*crv-iswlower* +crv-iswprint crefvim.txt /*crv-iswprint* +crv-iswpunct crefvim.txt /*crv-iswpunct* +crv-iswspace crefvim.txt /*crv-iswspace* +crv-iswupper crefvim.txt /*crv-iswupper* +crv-iswxdigit crefvim.txt /*crv-iswxdigit* +crv-isxdigit crefvim.txt /*crv-isxdigit* +crv-jmp_buf crefvim.txt /*crv-jmp_buf* +crv-keywords crefvim.txt /*crv-keywords* +crv-labs crefvim.txt /*crv-labs* +crv-language crefvim.txt /*crv-language* +crv-lconf crefvim.txt /*crv-lconf* +crv-ldexp crefvim.txt /*crv-ldexp* +crv-ldexpf crefvim.txt /*crv-ldexpf* +crv-ldexpl crefvim.txt /*crv-ldexpl* +crv-ldif_t crefvim.txt /*crv-ldif_t* +crv-ldiv crefvim.txt /*crv-ldiv* +crv-lgamma crefvim.txt /*crv-lgamma* +crv-lgammaf crefvim.txt /*crv-lgammaf* +crv-lgammal crefvim.txt /*crv-lgammal* +crv-libAssertH crefvim.txt /*crv-libAssertH* +crv-libCHExpLog crefvim.txt /*crv-libCHExpLog* +crv-libCHHyper crefvim.txt /*crv-libCHHyper* +crv-libCHMac crefvim.txt /*crv-libCHMac* +crv-libCHMani crefvim.txt /*crv-libCHMani* +crv-libCHPower crefvim.txt /*crv-libCHPower* +crv-libCHPrag crefvim.txt /*crv-libCHPrag* +crv-libCHTrig crefvim.txt /*crv-libCHTrig* +crv-libCharHandling crefvim.txt /*crv-libCharHandling* +crv-libCharMapping crefvim.txt /*crv-libCharMapping* +crv-libComplexH crefvim.txt /*crv-libComplexH* +crv-libCtypeH crefvim.txt /*crv-libCtypeH* +crv-libErrnoH crefvim.txt /*crv-libErrnoH* +crv-libFHEnv crefvim.txt /*crv-libFHEnv* +crv-libFHExceptions crefvim.txt /*crv-libFHExceptions* +crv-libFHPrag crefvim.txt /*crv-libFHPrag* +crv-libFHRounding crefvim.txt /*crv-libFHRounding* +crv-libFenvH crefvim.txt /*crv-libFenvH* +crv-libFloatH crefvim.txt /*crv-libFloatH* +crv-libHeaders crefvim.txt /*crv-libHeaders* +crv-libInttypesH crefvim.txt /*crv-libInttypesH* +crv-libIso646H crefvim.txt /*crv-libIso646H* +crv-libLHConv crefvim.txt /*crv-libLHConv* +crv-libLHRange crefvim.txt /*crv-libLHRange* +crv-libLHWidth crefvim.txt /*crv-libLHWidth* +crv-libLimitsH crefvim.txt /*crv-libLimitsH* +crv-libLocHCat crefvim.txt /*crv-libLocHCat* +crv-libLocHFunc crefvim.txt /*crv-libLocHFunc* +crv-libLocHInfo crefvim.txt /*crv-libLocHInfo* +crv-libLocHLoc crefvim.txt /*crv-libLocHLoc* +crv-libLocalH crefvim.txt /*crv-libLocalH* +crv-libMHClass crefvim.txt /*crv-libMHClass* +crv-libMHCmp crefvim.txt /*crv-libMHCmp* +crv-libMHErr crefvim.txt /*crv-libMHErr* +crv-libMHErrGam crefvim.txt /*crv-libMHErrGam* +crv-libMHExpLog crefvim.txt /*crv-libMHExpLog* +crv-libMHHyper crefvim.txt /*crv-libMHHyper* +crv-libMHMani crefvim.txt /*crv-libMHMani* +crv-libMHMisc crefvim.txt /*crv-libMHMisc* +crv-libMHNear crefvim.txt /*crv-libMHNear* +crv-libMHPower crefvim.txt /*crv-libMHPower* +crv-libMHRem crefvim.txt /*crv-libMHRem* +crv-libMHTrig crefvim.txt /*crv-libMHTrig* +crv-libMathH crefvim.txt /*crv-libMathH* +crv-libSHFunc crefvim.txt /*crv-libSHFunc* +crv-libSHSig crefvim.txt /*crv-libSHSig* +crv-libSHTyp crefvim.txt /*crv-libSHTyp* +crv-libSIOHCIO crefvim.txt /*crv-libSIOHCIO* +crv-libSIOHDIO crefvim.txt /*crv-libSIOHDIO* +crv-libSIOHErr crefvim.txt /*crv-libSIOHErr* +crv-libSIOHFAcc crefvim.txt /*crv-libSIOHFAcc* +crv-libSIOHFOp crefvim.txt /*crv-libSIOHFOp* +crv-libSIOHFPos crefvim.txt /*crv-libSIOHFPos* +crv-libSIOHIO crefvim.txt /*crv-libSIOHIO* +crv-libSIOHIOFin crefvim.txt /*crv-libSIOHIOFin* +crv-libSIOHIOFormat crefvim.txt /*crv-libSIOHIOFormat* +crv-libSIOHIOFout crefvim.txt /*crv-libSIOHIOFout* +crv-libSIOHIOFunc crefvim.txt /*crv-libSIOHIOFunc* +crv-libSIOHMac crefvim.txt /*crv-libSIOHMac* +crv-libSIOHStrmFile crefvim.txt /*crv-libSIOHStrmFile* +crv-libSIOHType crefvim.txt /*crv-libSIOHType* +crv-libSLHMac crefvim.txt /*crv-libSLHMac* +crv-libSLHType crefvim.txt /*crv-libSLHType* +crv-libSLHcom crefvim.txt /*crv-libSLHcom* +crv-libSLHintarith crefvim.txt /*crv-libSLHintarith* +crv-libSLHmem crefvim.txt /*crv-libSLHmem* +crv-libSLHmulchar crefvim.txt /*crv-libSLHmulchar* +crv-libSLHmulstrng crefvim.txt /*crv-libSLHmulstrng* +crv-libSLHnum crefvim.txt /*crv-libSLHnum* +crv-libSLHrand crefvim.txt /*crv-libSLHrand* +crv-libSLHsearch crefvim.txt /*crv-libSLHsearch* +crv-libSRHCmp crefvim.txt /*crv-libSRHCmp* +crv-libSRHConcat crefvim.txt /*crv-libSRHConcat* +crv-libSRHCopy crefvim.txt /*crv-libSRHCopy* +crv-libSRHMac crefvim.txt /*crv-libSRHMac* +crv-libSRHMisc crefvim.txt /*crv-libSRHMisc* +crv-libSRHSearch crefvim.txt /*crv-libSRHSearch* +crv-libSRHType crefvim.txt /*crv-libSRHType* +crv-libSdHLExact crefvim.txt /*crv-libSdHLExact* +crv-libSdHLFast crefvim.txt /*crv-libSdHLFast* +crv-libSdHLGreat crefvim.txt /*crv-libSdHLGreat* +crv-libSdHLMin crefvim.txt /*crv-libSdHLMin* +crv-libSdHLOther crefvim.txt /*crv-libSdHLOther* +crv-libSdHLPtr crefvim.txt /*crv-libSdHLPtr* +crv-libSdHMac crefvim.txt /*crv-libSdHMac* +crv-libSdHTExact crefvim.txt /*crv-libSdHTExact* +crv-libSdHTFast crefvim.txt /*crv-libSdHTFast* +crv-libSdHTGreat crefvim.txt /*crv-libSdHTGreat* +crv-libSdHTLim crefvim.txt /*crv-libSdHTLim* +crv-libSdHTMin crefvim.txt /*crv-libSdHTMin* +crv-libSdHTPtr crefvim.txt /*crv-libSdHTPtr* +crv-libSdHType crefvim.txt /*crv-libSdHType* +crv-libSetjmpH crefvim.txt /*crv-libSetjmpH* +crv-libSignalH crefvim.txt /*crv-libSignalH* +crv-libStdargH crefvim.txt /*crv-libStdargH* +crv-libStdboolH crefvim.txt /*crv-libStdboolH* +crv-libStddefH crefvim.txt /*crv-libStddefH* +crv-libStdintH crefvim.txt /*crv-libStdintH* +crv-libStdioH crefvim.txt /*crv-libStdioH* +crv-libStdlibH crefvim.txt /*crv-libStdlibH* +crv-libStringH crefvim.txt /*crv-libStringH* +crv-libTHConv crefvim.txt /*crv-libTHConv* +crv-libTHMac crefvim.txt /*crv-libTHMac* +crv-libTHMani crefvim.txt /*crv-libTHMani* +crv-libTHType crefvim.txt /*crv-libTHType* +crv-libTgmathH crefvim.txt /*crv-libTgmathH* +crv-libTimeH crefvim.txt /*crv-libTimeH* +crv-libWCHCIO crefvim.txt /*crv-libWCHCIO* +crv-libWCHCharConv crefvim.txt /*crv-libWCHCharConv* +crv-libWCHCmp crefvim.txt /*crv-libWCHCmp* +crv-libWCHConcat crefvim.txt /*crv-libWCHConcat* +crv-libWCHCopy crefvim.txt /*crv-libWCHCopy* +crv-libWCHIO crefvim.txt /*crv-libWCHIO* +crv-libWCHMac crefvim.txt /*crv-libWCHMac* +crv-libWCHMisc crefvim.txt /*crv-libWCHMisc* +crv-libWCHNum crefvim.txt /*crv-libWCHNum* +crv-libWCHSearch crefvim.txt /*crv-libWCHSearch* +crv-libWCHStrng crefvim.txt /*crv-libWCHStrng* +crv-libWCHTimeConv crefvim.txt /*crv-libWCHTimeConv* +crv-libWCHType crefvim.txt /*crv-libWCHType* +crv-libWTHCextens crefvim.txt /*crv-libWTHCextens* +crv-libWTHClass crefvim.txt /*crv-libWTHClass* +crv-libWTHCwide crefvim.txt /*crv-libWTHCwide* +crv-libWTHMac crefvim.txt /*crv-libWTHMac* +crv-libWTHMap crefvim.txt /*crv-libWTHMap* +crv-libWTHMextens crefvim.txt /*crv-libWTHMextens* +crv-libWTHMwide crefvim.txt /*crv-libWTHMwide* +crv-libWTHType crefvim.txt /*crv-libWTHType* +crv-libWcharH crefvim.txt /*crv-libWcharH* +crv-libWctypeH crefvim.txt /*crv-libWctypeH* +crv-llabs crefvim.txt /*crv-llabs* +crv-lldif_t crefvim.txt /*crv-lldif_t* +crv-lldiv crefvim.txt /*crv-lldiv* +crv-llrint crefvim.txt /*crv-llrint* +crv-llrintf crefvim.txt /*crv-llrintf* +crv-llrintl crefvim.txt /*crv-llrintl* +crv-llround crefvim.txt /*crv-llround* +crv-llroundf crefvim.txt /*crv-llroundf* +crv-llroundl crefvim.txt /*crv-llroundl* +crv-lngAllowedChar crefvim.txt /*crv-lngAllowedChar* +crv-lngBlockComment crefvim.txt /*crv-lngBlockComment* +crv-lngChar crefvim.txt /*crv-lngChar* +crv-lngComment crefvim.txt /*crv-lngComment* +crv-lngEscSeq crefvim.txt /*crv-lngEscSeq* +crv-lngLineComment crefvim.txt /*crv-lngLineComment* +crv-localeconv crefvim.txt /*crv-localeconv* +crv-localtime crefvim.txt /*crv-localtime* +crv-log crefvim.txt /*crv-log* +crv-log10 crefvim.txt /*crv-log10* +crv-log10f crefvim.txt /*crv-log10f* +crv-log10l crefvim.txt /*crv-log10l* +crv-log1p crefvim.txt /*crv-log1p* +crv-log1pf crefvim.txt /*crv-log1pf* +crv-log1pl crefvim.txt /*crv-log1pl* +crv-log2 crefvim.txt /*crv-log2* +crv-log2f crefvim.txt /*crv-log2f* +crv-log2l crefvim.txt /*crv-log2l* +crv-logb crefvim.txt /*crv-logb* +crv-logbf crefvim.txt /*crv-logbf* +crv-logbl crefvim.txt /*crv-logbl* +crv-logf crefvim.txt /*crv-logf* +crv-logl crefvim.txt /*crv-logl* +crv-long crefvim.txt /*crv-long* +crv-longjmp crefvim.txt /*crv-longjmp* +crv-lrint crefvim.txt /*crv-lrint* +crv-lrintf crefvim.txt /*crv-lrintf* +crv-lrintl crefvim.txt /*crv-lrintl* +crv-lround crefvim.txt /*crv-lround* +crv-lroundf crefvim.txt /*crv-lroundf* +crv-lroundl crefvim.txt /*crv-lroundl* +crv-malloc crefvim.txt /*crv-malloc* +crv-mblen crefvim.txt /*crv-mblen* +crv-mbrlen crefvim.txt /*crv-mbrlen* +crv-mbrtowc crefvim.txt /*crv-mbrtowc* +crv-mbsinit crefvim.txt /*crv-mbsinit* +crv-mbsrtowc crefvim.txt /*crv-mbsrtowc* +crv-mbstate_t crefvim.txt /*crv-mbstate_t* +crv-mbstowcs crefvim.txt /*crv-mbstowcs* +crv-mbtowc crefvim.txt /*crv-mbtowc* +crv-memchr crefvim.txt /*crv-memchr* +crv-memcmp crefvim.txt /*crv-memcmp* +crv-memcpy crefvim.txt /*crv-memcpy* +crv-memmove crefvim.txt /*crv-memmove* +crv-memset crefvim.txt /*crv-memset* +crv-mktime crefvim.txt /*crv-mktime* +crv-modf crefvim.txt /*crv-modf* +crv-modff crefvim.txt /*crv-modff* +crv-modfl crefvim.txt /*crv-modfl* +crv-mon_decimal_point crefvim.txt /*crv-mon_decimal_point* +crv-mon_grouping crefvim.txt /*crv-mon_grouping* +crv-mon_thousands_sep crefvim.txt /*crv-mon_thousands_sep* +crv-n_cs_precedes crefvim.txt /*crv-n_cs_precedes* +crv-n_sep_by_space crefvim.txt /*crv-n_sep_by_space* +crv-n_sign_posn crefvim.txt /*crv-n_sign_posn* +crv-nan crefvim.txt /*crv-nan* +crv-nanf crefvim.txt /*crv-nanf* +crv-nanl crefvim.txt /*crv-nanl* +crv-nearbyint crefvim.txt /*crv-nearbyint* +crv-nearbyintf crefvim.txt /*crv-nearbyintf* +crv-nearbyintl crefvim.txt /*crv-nearbyintl* +crv-negative_sign crefvim.txt /*crv-negative_sign* +crv-nextafter crefvim.txt /*crv-nextafter* +crv-nextafterf crefvim.txt /*crv-nextafterf* +crv-nextafterl crefvim.txt /*crv-nextafterl* +crv-nexttoward crefvim.txt /*crv-nexttoward* +crv-nexttowardf crefvim.txt /*crv-nexttowardf* +crv-nexttowardl crefvim.txt /*crv-nexttowardl* +crv-offsetof crefvim.txt /*crv-offsetof* +crv-onesComplement crefvim.txt /*crv-onesComplement* +crv-opAdd crefvim.txt /*crv-opAdd* +crv-opAddress crefvim.txt /*crv-opAddress* +crv-opArithmetic crefvim.txt /*crv-opArithmetic* +crv-opArraySel crefvim.txt /*crv-opArraySel* +crv-opAsAdd crefvim.txt /*crv-opAsAdd* +crv-opAsAssign crefvim.txt /*crv-opAsAssign* +crv-opAsDiv crefvim.txt /*crv-opAsDiv* +crv-opAsLeftShift crefvim.txt /*crv-opAsLeftShift* +crv-opAsModulo crefvim.txt /*crv-opAsModulo* +crv-opAsMul crefvim.txt /*crv-opAsMul* +crv-opAsSub crefvim.txt /*crv-opAsSub* +crv-opAssigns crefvim.txt /*crv-opAssigns* +crv-opBitAnd crefvim.txt /*crv-opBitAnd* +crv-opBitCompl crefvim.txt /*crv-opBitCompl* +crv-opBitLeftShift crefvim.txt /*crv-opBitLeftShift* +crv-opBitOr crefvim.txt /*crv-opBitOr* +crv-opBitRightShift crefvim.txt /*crv-opBitRightShift* +crv-opBitXor crefvim.txt /*crv-opBitXor* +crv-opBitwise crefvim.txt /*crv-opBitwise* +crv-opConditional crefvim.txt /*crv-opConditional* +crv-opContents crefvim.txt /*crv-opContents* +crv-opDivide crefvim.txt /*crv-opDivide* +crv-opLogAnd crefvim.txt /*crv-opLogAnd* +crv-opLogNot crefvim.txt /*crv-opLogNot* +crv-opLogOr crefvim.txt /*crv-opLogOr* +crv-opLogical crefvim.txt /*crv-opLogical* +crv-opModulo crefvim.txt /*crv-opModulo* +crv-opMultiply crefvim.txt /*crv-opMultiply* +crv-opNegSign crefvim.txt /*crv-opNegSign* +crv-opOthers crefvim.txt /*crv-opOthers* +crv-opOverview crefvim.txt /*crv-opOverview* +crv-opParenth crefvim.txt /*crv-opParenth* +crv-opPosSign crefvim.txt /*crv-opPosSign* +crv-opPostDec crefvim.txt /*crv-opPostDec* +crv-opPostInc crefvim.txt /*crv-opPostInc* +crv-opPreDec crefvim.txt /*crv-opPreDec* +crv-opPrecedence crefvim.txt /*crv-opPrecedence* +crv-opRelEqual crefvim.txt /*crv-opRelEqual* +crv-opRelGT crefvim.txt /*crv-opRelGT* +crv-opRelGTE crefvim.txt /*crv-opRelGTE* +crv-opRelLT crefvim.txt /*crv-opRelLT* +crv-opRelLTE crefvim.txt /*crv-opRelLTE* +crv-opRelUnequal crefvim.txt /*crv-opRelUnequal* +crv-opRelational crefvim.txt /*crv-opRelational* +crv-opSeries crefvim.txt /*crv-opSeries* +crv-opSizeOf crefvim.txt /*crv-opSizeOf* +crv-opStructUnionSel crefvim.txt /*crv-opStructUnionSel* +crv-opSub crefvim.txt /*crv-opSub* +crv-opTypeCast crefvim.txt /*crv-opTypeCast* +crv-operators crefvim.txt /*crv-operators* +crv-p_cs_precedes crefvim.txt /*crv-p_cs_precedes* +crv-p_sep_by_space crefvim.txt /*crv-p_sep_by_space* +crv-p_sign_posn crefvim.txt /*crv-p_sign_posn* +crv-perror crefvim.txt /*crv-perror* +crv-positive_sign crefvim.txt /*crv-positive_sign* +crv-pow crefvim.txt /*crv-pow* +crv-powf crefvim.txt /*crv-powf* +crv-powl crefvim.txt /*crv-powl* +crv-preCondDefined crefvim.txt /*crv-preCondDefined* +crv-preCondElif crefvim.txt /*crv-preCondElif* +crv-preCondElse crefvim.txt /*crv-preCondElse* +crv-preCondEndif crefvim.txt /*crv-preCondEndif* +crv-preCondIf crefvim.txt /*crv-preCondIf* +crv-preCondIfdef crefvim.txt /*crv-preCondIfdef* +crv-preCondIfndef crefvim.txt /*crv-preCondIfndef* +crv-preConditional crefvim.txt /*crv-preConditional* +crv-preError crefvim.txt /*crv-preError* +crv-preLine crefvim.txt /*crv-preLine* +crv-preMac##Operator crefvim.txt /*crv-preMac##Operator* +crv-preMac#Operator crefvim.txt /*crv-preMac#Operator* +crv-preMacCancel crefvim.txt /*crv-preMacCancel* +crv-preMacDef crefvim.txt /*crv-preMacDef* +crv-preMacFunc crefvim.txt /*crv-preMacFunc* +crv-preMacObj crefvim.txt /*crv-preMacObj* +crv-preMacPredefined crefvim.txt /*crv-preMacPredefined* +crv-preMacros crefvim.txt /*crv-preMacros* +crv-preNull crefvim.txt /*crv-preNull* +crv-prePragma crefvim.txt /*crv-prePragma* +crv-preSourceInc crefvim.txt /*crv-preSourceInc* +crv-preprocessor crefvim.txt /*crv-preprocessor* +crv-printf crefvim.txt /*crv-printf* +crv-prtdiff_t crefvim.txt /*crv-prtdiff_t* +crv-punctuators crefvim.txt /*crv-punctuators* +crv-putc crefvim.txt /*crv-putc* +crv-putchar crefvim.txt /*crv-putchar* +crv-puts crefvim.txt /*crv-puts* +crv-putwc crefvim.txt /*crv-putwc* +crv-putwchar crefvim.txt /*crv-putwchar* +crv-qsort crefvim.txt /*crv-qsort* +crv-rais crefvim.txt /*crv-rais* +crv-rand crefvim.txt /*crv-rand* +crv-realloc crefvim.txt /*crv-realloc* +crv-register crefvim.txt /*crv-register* +crv-remainder crefvim.txt /*crv-remainder* +crv-remainderf crefvim.txt /*crv-remainderf* +crv-remainderl crefvim.txt /*crv-remainderl* +crv-remove crefvim.txt /*crv-remove* +crv-remquo crefvim.txt /*crv-remquo* +crv-remquof crefvim.txt /*crv-remquof* +crv-remquol crefvim.txt /*crv-remquol* +crv-rename crefvim.txt /*crv-rename* +crv-restrict crefvim.txt /*crv-restrict* +crv-return crefvim.txt /*crv-return* +crv-rewind crefvim.txt /*crv-rewind* +crv-rint crefvim.txt /*crv-rint* +crv-rintf crefvim.txt /*crv-rintf* +crv-rintl crefvim.txt /*crv-rintl* +crv-round crefvim.txt /*crv-round* +crv-roundf crefvim.txt /*crv-roundf* +crv-roundl crefvim.txt /*crv-roundl* +crv-scalbln crefvim.txt /*crv-scalbln* +crv-scalblnf crefvim.txt /*crv-scalblnf* +crv-scalblnl crefvim.txt /*crv-scalblnl* +crv-scalbn crefvim.txt /*crv-scalbn* +crv-scalbnf crefvim.txt /*crv-scalbnf* +crv-scalbnl crefvim.txt /*crv-scalbnl* +crv-scanf crefvim.txt /*crv-scanf* +crv-setbuf crefvim.txt /*crv-setbuf* +crv-setjmp crefvim.txt /*crv-setjmp* +crv-setlocale crefvim.txt /*crv-setlocale* +crv-setvbuf crefvim.txt /*crv-setvbuf* +crv-short crefvim.txt /*crv-short* +crv-sig_atomic_t crefvim.txt /*crv-sig_atomic_t* +crv-signMagnitude crefvim.txt /*crv-signMagnitude* +crv-signal crefvim.txt /*crv-signal* +crv-signbit crefvim.txt /*crv-signbit* +crv-signed crefvim.txt /*crv-signed* +crv-signgam crefvim.txt /*crv-signgam* +crv-sin crefvim.txt /*crv-sin* +crv-sinf crefvim.txt /*crv-sinf* +crv-sinh crefvim.txt /*crv-sinh* +crv-sinhf crefvim.txt /*crv-sinhf* +crv-sinhl crefvim.txt /*crv-sinhl* +crv-sinl crefvim.txt /*crv-sinl* +crv-size_t crefvim.txt /*crv-size_t* +crv-size_t2 crefvim.txt /*crv-size_t2* +crv-size_t3 crefvim.txt /*crv-size_t3* +crv-size_t4 crefvim.txt /*crv-size_t4* +crv-size_t5 crefvim.txt /*crv-size_t5* +crv-size_t6 crefvim.txt /*crv-size_t6* +crv-sizeof crefvim.txt /*crv-sizeof* +crv-snprintf crefvim.txt /*crv-snprintf* +crv-sprintf crefvim.txt /*crv-sprintf* +crv-sqrt crefvim.txt /*crv-sqrt* +crv-sqrtf crefvim.txt /*crv-sqrtf* +crv-sqrtl crefvim.txt /*crv-sqrtl* +crv-srand crefvim.txt /*crv-srand* +crv-sscanf crefvim.txt /*crv-sscanf* +crv-stBreak crefvim.txt /*crv-stBreak* +crv-stContinue crefvim.txt /*crv-stContinue* +crv-stDoWhile crefvim.txt /*crv-stDoWhile* +crv-stFor crefvim.txt /*crv-stFor* +crv-stGoto crefvim.txt /*crv-stGoto* +crv-stIfElse crefvim.txt /*crv-stIfElse* +crv-stNull crefvim.txt /*crv-stNull* +crv-stReturn crefvim.txt /*crv-stReturn* +crv-stSwitch crefvim.txt /*crv-stSwitch* +crv-stWhile crefvim.txt /*crv-stWhile* +crv-statements crefvim.txt /*crv-statements* +crv-static crefvim.txt /*crv-static* +crv-stdCLib crefvim.txt /*crv-stdCLib* +crv-stderr crefvim.txt /*crv-stderr* +crv-stdin crefvim.txt /*crv-stdin* +crv-stdout crefvim.txt /*crv-stdout* +crv-strcat crefvim.txt /*crv-strcat* +crv-strchr crefvim.txt /*crv-strchr* +crv-strcmp crefvim.txt /*crv-strcmp* +crv-strcoll crefvim.txt /*crv-strcoll* +crv-strcpy crefvim.txt /*crv-strcpy* +crv-strcspn crefvim.txt /*crv-strcspn* +crv-strerror crefvim.txt /*crv-strerror* +crv-strftime crefvim.txt /*crv-strftime* +crv-strlen crefvim.txt /*crv-strlen* +crv-strncat crefvim.txt /*crv-strncat* +crv-strncmp crefvim.txt /*crv-strncmp* +crv-strncpy crefvim.txt /*crv-strncpy* +crv-stroul crefvim.txt /*crv-stroul* +crv-strpbrk crefvim.txt /*crv-strpbrk* +crv-strrchr crefvim.txt /*crv-strrchr* +crv-strspn crefvim.txt /*crv-strspn* +crv-strstr crefvim.txt /*crv-strstr* +crv-strtod crefvim.txt /*crv-strtod* +crv-strtof crefvim.txt /*crv-strtof* +crv-strtoimax crefvim.txt /*crv-strtoimax* +crv-strtok crefvim.txt /*crv-strtok* +crv-strtol crefvim.txt /*crv-strtol* +crv-strtold crefvim.txt /*crv-strtold* +crv-strtoll crefvim.txt /*crv-strtoll* +crv-strtoull crefvim.txt /*crv-strtoull* +crv-strtoumax crefvim.txt /*crv-strtoumax* +crv-struct crefvim.txt /*crv-struct* +crv-strxfrm crefvim.txt /*crv-strxfrm* +crv-switch crefvim.txt /*crv-switch* +crv-swprintf crefvim.txt /*crv-swprintf* +crv-swscanf crefvim.txt /*crv-swscanf* +crv-system crefvim.txt /*crv-system* +crv-tan crefvim.txt /*crv-tan* +crv-tanf crefvim.txt /*crv-tanf* +crv-tanh crefvim.txt /*crv-tanh* +crv-tanhf crefvim.txt /*crv-tanhf* +crv-tanhl crefvim.txt /*crv-tanhl* +crv-tanl crefvim.txt /*crv-tanl* +crv-tgamma crefvim.txt /*crv-tgamma* +crv-tgammaf crefvim.txt /*crv-tgammaf* +crv-tgammal crefvim.txt /*crv-tgammal* +crv-thousands_sep crefvim.txt /*crv-thousands_sep* +crv-time crefvim.txt /*crv-time* +crv-time_t crefvim.txt /*crv-time_t* +crv-tm crefvim.txt /*crv-tm* +crv-tm2 crefvim.txt /*crv-tm2* +crv-tmpfile crefvim.txt /*crv-tmpfile* +crv-tmpnam crefvim.txt /*crv-tmpnam* +crv-tolower crefvim.txt /*crv-tolower* +crv-toupper crefvim.txt /*crv-toupper* +crv-towctrans crefvim.txt /*crv-towctrans* +crv-towlower crefvim.txt /*crv-towlower* +crv-towupper crefvim.txt /*crv-towupper* +crv-trigraph crefvim.txt /*crv-trigraph* +crv-true crefvim.txt /*crv-true* +crv-trunc crefvim.txt /*crv-trunc* +crv-truncf crefvim.txt /*crv-truncf* +crv-truncl crefvim.txt /*crv-truncl* +crv-twosComplement crefvim.txt /*crv-twosComplement* +crv-typedef crefvim.txt /*crv-typedef* +crv-uint16_t crefvim.txt /*crv-uint16_t* +crv-uint32_t crefvim.txt /*crv-uint32_t* +crv-uint64_t crefvim.txt /*crv-uint64_t* +crv-uint8_t crefvim.txt /*crv-uint8_t* +crv-uint_fast16_t crefvim.txt /*crv-uint_fast16_t* +crv-uint_fast32_t crefvim.txt /*crv-uint_fast32_t* +crv-uint_fast64_t crefvim.txt /*crv-uint_fast64_t* +crv-uint_fast8_t crefvim.txt /*crv-uint_fast8_t* +crv-uint_least16_t crefvim.txt /*crv-uint_least16_t* +crv-uint_least32_t crefvim.txt /*crv-uint_least32_t* +crv-uint_least64_t crefvim.txt /*crv-uint_least64_t* +crv-uint_least8_t crefvim.txt /*crv-uint_least8_t* +crv-uintmax_t crefvim.txt /*crv-uintmax_t* +crv-uintptr_t crefvim.txt /*crv-uintptr_t* +crv-ungetc crefvim.txt /*crv-ungetc* +crv-ungetwc crefvim.txt /*crv-ungetwc* +crv-union crefvim.txt /*crv-union* +crv-unsigned crefvim.txt /*crv-unsigned* +crv-va_arg crefvim.txt /*crv-va_arg* +crv-va_copy crefvim.txt /*crv-va_copy* +crv-va_end crefvim.txt /*crv-va_end* +crv-va_list crefvim.txt /*crv-va_list* +crv-va_start crefvim.txt /*crv-va_start* +crv-vfprintf crefvim.txt /*crv-vfprintf* +crv-vfscanf crefvim.txt /*crv-vfscanf* +crv-vfwprintf crefvim.txt /*crv-vfwprintf* +crv-vfwscanf crefvim.txt /*crv-vfwscanf* +crv-void crefvim.txt /*crv-void* +crv-volatile crefvim.txt /*crv-volatile* +crv-vprintf crefvim.txt /*crv-vprintf* +crv-vscanf crefvim.txt /*crv-vscanf* +crv-vsnprintf crefvim.txt /*crv-vsnprintf* +crv-vsprintf crefvim.txt /*crv-vsprintf* +crv-vsscanf crefvim.txt /*crv-vsscanf* +crv-vswprintf crefvim.txt /*crv-vswprintf* +crv-vswscanf crefvim.txt /*crv-vswscanf* +crv-vwprintf crefvim.txt /*crv-vwprintf* +crv-vwscanf crefvim.txt /*crv-vwscanf* +crv-wchar_t crefvim.txt /*crv-wchar_t* +crv-wchar_t2 crefvim.txt /*crv-wchar_t2* +crv-wchar_t3 crefvim.txt /*crv-wchar_t3* +crv-wcrtomb crefvim.txt /*crv-wcrtomb* +crv-wcscat crefvim.txt /*crv-wcscat* +crv-wcschr crefvim.txt /*crv-wcschr* +crv-wcscmp crefvim.txt /*crv-wcscmp* +crv-wcscoll crefvim.txt /*crv-wcscoll* +crv-wcscpy crefvim.txt /*crv-wcscpy* +crv-wcscspn crefvim.txt /*crv-wcscspn* +crv-wcsftime crefvim.txt /*crv-wcsftime* +crv-wcslen crefvim.txt /*crv-wcslen* +crv-wcsncat crefvim.txt /*crv-wcsncat* +crv-wcsncmp crefvim.txt /*crv-wcsncmp* +crv-wcsncpy crefvim.txt /*crv-wcsncpy* +crv-wcspbrk crefvim.txt /*crv-wcspbrk* +crv-wcsrchr crefvim.txt /*crv-wcsrchr* +crv-wcsrtombs crefvim.txt /*crv-wcsrtombs* +crv-wcsspn crefvim.txt /*crv-wcsspn* +crv-wcsstr crefvim.txt /*crv-wcsstr* +crv-wcstod crefvim.txt /*crv-wcstod* +crv-wcstof crefvim.txt /*crv-wcstof* +crv-wcstoimax crefvim.txt /*crv-wcstoimax* +crv-wcstok crefvim.txt /*crv-wcstok* +crv-wcstol crefvim.txt /*crv-wcstol* +crv-wcstold crefvim.txt /*crv-wcstold* +crv-wcstoll crefvim.txt /*crv-wcstoll* +crv-wcstombs crefvim.txt /*crv-wcstombs* +crv-wcstoul crefvim.txt /*crv-wcstoul* +crv-wcstoull crefvim.txt /*crv-wcstoull* +crv-wcstoumax crefvim.txt /*crv-wcstoumax* +crv-wcsxfrm crefvim.txt /*crv-wcsxfrm* +crv-wctob crefvim.txt /*crv-wctob* +crv-wctomb crefvim.txt /*crv-wctomb* +crv-wctrans crefvim.txt /*crv-wctrans* +crv-wctrans_t crefvim.txt /*crv-wctrans_t* +crv-wctype crefvim.txt /*crv-wctype* +crv-wctype_t crefvim.txt /*crv-wctype_t* +crv-while crefvim.txt /*crv-while* +crv-wint_t crefvim.txt /*crv-wint_t* +crv-wint_t2 crefvim.txt /*crv-wint_t2* +crv-wmemchr crefvim.txt /*crv-wmemchr* +crv-wmemcmp crefvim.txt /*crv-wmemcmp* +crv-wmemcpy crefvim.txt /*crv-wmemcpy* +crv-wmemmove crefvim.txt /*crv-wmemmove* +crv-wmemset crefvim.txt /*crv-wmemset* +crv-wprintf crefvim.txt /*crv-wprintf* +crv-wscanf crefvim.txt /*crv-wscanf* +crvdoc-author crefvimdoc.txt /*crvdoc-author* +crvdoc-copyright crefvimdoc.txt /*crvdoc-copyright* +crvdoc-credits crefvimdoc.txt /*crvdoc-credits* +crvdoc-customization crefvimdoc.txt /*crvdoc-customization* +crvdoc-history crefvimdoc.txt /*crvdoc-history* +crvdoc-install crefvimdoc.txt /*crvdoc-install* +crvdoc-intro crefvimdoc.txt /*crvdoc-intro* +crvdoc-lbCRef crefvimdoc.txt /*crvdoc-lbCRef* +crvdoc-lbScript crefvimdoc.txt /*crvdoc-lbScript* +crvdoc-licFDL crefvimdoc.txt /*crvdoc-licFDL* +crvdoc-licFreeDoc crefvimdoc.txt /*crvdoc-licFreeDoc* +crvdoc-licGPL crefvimdoc.txt /*crvdoc-licGPL* +crvdoc-licLGPL crefvimdoc.txt /*crvdoc-licLGPL* +crvdoc-limbugs crefvimdoc.txt /*crvdoc-limbugs* +crvdoc-usage crefvimdoc.txt /*crvdoc-usage* +css css21.txt /*css* +css-about css21.txt /*css-about* +css-box css21.txt /*css-box* +css-cascading css21.txt /*css-cascading* +css-colors css21.txt /*css-colors* +css-content css21.txt /*css-content* +css-fonts css21.txt /*css-fonts* +css-intro css21.txt /*css-intro* +css-media css21.txt /*css-media* +css-paged css21.txt /*css-paged* +css-selectors css21.txt /*css-selectors* +css-syndata css21.txt /*css-syndata* +css-tables css21.txt /*css-tables* +css-text css21.txt /*css-text* +css-ui css21.txt /*css-ui* +css-visfm css21.txt /*css-visfm* +css-visfmd css21.txt /*css-visfmd* +css-visfx css21.txt /*css-visfx* +css21.txt css21.txt /*css21.txt* +csupport csupport.txt /*csupport* +csupport-c++ csupport.txt /*csupport-c++* +csupport-c++-normal-mode csupport.txt /*csupport-c++-normal-mode* +csupport-c++-visual-mode csupport.txt /*csupport-c++-visual-mode* +csupport-code-to-comm csupport.txt /*csupport-code-to-comm* +csupport-comm csupport.txt /*csupport-comm* +csupport-comm-aligned csupport.txt /*csupport-comm-aligned* +csupport-comm-c-cpp csupport.txt /*csupport-comm-c-cpp* +csupport-comm-frame csupport.txt /*csupport-comm-frame* +csupport-comm-keywords csupport.txt /*csupport-comm-keywords* +csupport-comm-multiline csupport.txt /*csupport-comm-multiline* +csupport-comm-style csupport.txt /*csupport-comm-style* +csupport-comm-to-code csupport.txt /*csupport-comm-to-code* +csupport-custom csupport.txt /*csupport-custom* +csupport-custom-glob-vars csupport.txt /*csupport-custom-glob-vars* +csupport-custom-root-menu csupport.txt /*csupport-custom-root-menu* +csupport-dictionary csupport.txt /*csupport-dictionary* +csupport-folding csupport.txt /*csupport-folding* +csupport-help csupport.txt /*csupport-help* +csupport-hotkeys csupport.txt /*csupport-hotkeys* +csupport-idioms csupport.txt /*csupport-idioms* +csupport-proto csupport.txt /*csupport-proto* +csupport-release-notes csupport.txt /*csupport-release-notes* +csupport-run csupport.txt /*csupport-run* +csupport-run-buffer csupport.txt /*csupport-run-buffer* +csupport-run-cmdline-args csupport.txt /*csupport-run-cmdline-args* +csupport-run-hardcopy csupport.txt /*csupport-run-hardcopy* +csupport-run-indent csupport.txt /*csupport-run-indent* +csupport-run-make csupport.txt /*csupport-run-make* +csupport-run-make-args csupport.txt /*csupport-run-make-args* +csupport-run-output csupport.txt /*csupport-run-output* +csupport-run-splint csupport.txt /*csupport-run-splint* +csupport-run-xterm csupport.txt /*csupport-run-xterm* +csupport-snippets csupport.txt /*csupport-snippets* +csupport-stat csupport.txt /*csupport-stat* +csupport-stat-if0 csupport.txt /*csupport-stat-if0* +csupport-stat-normal-mode csupport.txt /*csupport-stat-normal-mode* +csupport-stat-visual-mode csupport.txt /*csupport-stat-visual-mode* +csupport-taglist csupport.txt /*csupport-taglist* +csupport-templates csupport.txt /*csupport-templates* +csupport-templates-tags csupport.txt /*csupport-templates-tags* +csupport-usage-gvim csupport.txt /*csupport-usage-gvim* +csupport-usage-vim csupport.txt /*csupport-usage-vim* +csupport-windows csupport.txt /*csupport-windows* +csupport.txt csupport.txt /*csupport.txt* +custom-macros-menu latex-suite.txt /*custom-macros-menu* +custom-packages latex-suite.txt /*custom-packages* +customize-alt-key-maps latex-suite.txt /*customize-alt-key-maps* +customize-imap-maps latex-suite.txt /*customize-imap-maps* +customizing-folding latex-suite.txt /*customizing-folding* +customizing-latex-completion latex-suite.txt /*customizing-latex-completion* +customizing-latex-suite latex-suite.txt /*customizing-latex-suite* +customizing-macros latex-suite.txt /*customizing-macros* +customizing-menus latex-suite.txt /*customizing-menus* +customizing-packages latex-suite.txt /*customizing-packages* +customizing-place-holders latex-suite.txt /*customizing-place-holders* +customizing-smart-keys latex-suite.txt /*customizing-smart-keys* +customizing-what-to-fold latex-suite.txt /*customizing-what-to-fold* +cvscommand cvscommand.txt /*cvscommand* +cvscommand-buffer-management cvscommand.txt /*cvscommand-buffer-management* +cvscommand-buffer-variables cvscommand.txt /*cvscommand-buffer-variables* +cvscommand-bugs cvscommand.txt /*cvscommand-bugs* +cvscommand-commands cvscommand.txt /*cvscommand-commands* +cvscommand-config cvscommand.txt /*cvscommand-config* +cvscommand-contents cvscommand.txt /*cvscommand-contents* +cvscommand-customize cvscommand.txt /*cvscommand-customize* +cvscommand-events cvscommand.txt /*cvscommand-events* +cvscommand-install cvscommand.txt /*cvscommand-install* +cvscommand-intro cvscommand.txt /*cvscommand-intro* +cvscommand-manual cvscommand.txt /*cvscommand-manual* +cvscommand-mappings cvscommand.txt /*cvscommand-mappings* +cvscommand-mappings-override cvscommand.txt /*cvscommand-mappings-override* +cvscommand-naming cvscommand.txt /*cvscommand-naming* +cvscommand-options cvscommand.txt /*cvscommand-options* +cvscommand-ssh cvscommand.txt /*cvscommand-ssh* +cvscommand-ssh-config cvscommand.txt /*cvscommand-ssh-config* +cvscommand-ssh-env cvscommand.txt /*cvscommand-ssh-env* +cvscommand-ssh-other cvscommand.txt /*cvscommand-ssh-other* +cvscommand-ssh-wrapper cvscommand.txt /*cvscommand-ssh-wrapper* +cvscommand-statusline cvscommand.txt /*cvscommand-statusline* +cvscommand-tips cvscommand.txt /*cvscommand-tips* +cvscommand.txt cvscommand.txt /*cvscommand.txt* +default-folding latex-suite.txt /*default-folding* +deplate viki.txt /*deplate* +description latexhelp.txt /*description* +diacritic-mappings latex-suite.txt /*diacritic-mappings* +displaymath latexhelp.txt /*displaymath* +draft latexhelp.txt /*draft* +drv-dtArrayInit crefvim.txt /*drv-dtArrayInit* +drv-dtIncompleteArrayDecl crefvim.txt /*drv-dtIncompleteArrayDecl* +empty latexhelp.txt /*empty* +enabling-searching latex-suite.txt /*enabling-searching* +enumerate latexhelp.txt /*enumerate* +environment-mappings latex-suite.txt /*environment-mappings* +eqnarray latexhelp.txt /*eqnarray* +equation latexhelp.txt /*equation* +figure latexhelp.txt /*figure* +final latexhelp.txt /*final* +fleqn latexhelp.txt /*fleqn* +flushleft latexhelp.txt /*flushleft* +flushright latexhelp.txt /*flushright* +font-lowlevelcommands latexhelp.txt /*font-lowlevelcommands* +font-maps latex-suite.txt /*font-maps* +font-size latexhelp.txt /*font-size* +font-styles latexhelp.txt /*font-styles* +forward-searching latex-suite.txt /*forward-searching* +g:vikiCommentStart viki.txt /*g:vikiCommentStart* +g:vikiExplorer viki.txt /*g:vikiExplorer* +g:vikiFolds viki.txt /*g:vikiFolds* +g:vikiFreeMarker viki.txt /*g:vikiFreeMarker* +g:vikiHeadingFont viki.txt /*g:vikiHeadingFont* +g:vikiHide viki.txt /*g:vikiHide* +g:vikiHomePage viki.txt /*g:vikiHomePage* +g:vikiHyperLinkColor viki.txt /*g:vikiHyperLinkColor* +g:vikiInexistentColor viki.txt /*g:vikiInexistentColor* +g:vikiLowerCharacters viki.txt /*g:vikiLowerCharacters* +g:vikiMapMouse viki.txt /*g:vikiMapMouse* +g:vikiMarkInexistent viki.txt /*g:vikiMarkInexistent* +g:vikiSaveHistory viki.txt /*g:vikiSaveHistory* +g:vikiTypewriterFont viki.txt /*g:vikiTypewriterFont* +g:vikiUpperCharacters viki.txt /*g:vikiUpperCharacters* +g:vikiUseParentSuffix viki.txt /*g:vikiUseParentSuffix* +gdbvim-commands gdbvim.txt /*gdbvim-commands* +gdbvim-mappings gdbvim.txt /*gdbvim-mappings* +gdbvim-settings gdbvim.txt /*gdbvim-settings* +gdbvim.txt gdbvim.txt /*gdbvim.txt* +greek-letter-mappings latex-suite.txt /*greek-letter-mappings* +headings latexhelp.txt /*headings* +hyph- latexhelp.txt /*hyph-* +im_1 imaps.txt /*im_1* +imaps-usage imaps.txt /*imaps-usage* +imaps.txt imaps.txt /*imaps.txt* +imaps.txt-toc imaps.txt /*imaps.txt-toc* +insert-mode-environment-mappings latex-suite.txt /*insert-mode-environment-mappings* +inserting-packages latex-suite.txt /*inserting-packages* +interviki viki.txt /*interviki* +inverse-searching latex-suite.txt /*inverse-searching* +itemize latexhelp.txt /*itemize* +landscape latexhelp.txt /*landscape* +largefile LargeFile.txt /*largefile* +latex latexhelp.txt /*latex* +latex-boxes latexhelp.txt /*latex-boxes* +latex-breaking latexhelp.txt /*latex-breaking* +latex-classes latexhelp.txt /*latex-classes* +latex-command-maps latex-suite.txt /*latex-command-maps* +latex-commands latexhelp.txt /*latex-commands* +latex-compiling latex-suite.txt /*latex-compiling* +latex-completion latex-suite.txt /*latex-completion* +latex-completion-cite latex-suite.txt /*latex-completion-cite* +latex-counters latexhelp.txt /*latex-counters* +latex-definitions latexhelp.txt /*latex-definitions* +latex-environments latexhelp.txt /*latex-environments* +latex-folding latex-suite.txt /*latex-folding* +latex-footnotes latexhelp.txt /*latex-footnotes* +latex-hor-space latexhelp.txt /*latex-hor-space* +latex-inputing latexhelp.txt /*latex-inputing* +latex-layout latexhelp.txt /*latex-layout* +latex-lenghts latexhelp.txt /*latex-lenghts* +latex-letters latexhelp.txt /*latex-letters* +latex-macros latex-suite.txt /*latex-macros* +latex-margin-notes latexhelp.txt /*latex-margin-notes* +latex-master-file latex-suite.txt /*latex-master-file* +latex-math latexhelp.txt /*latex-math* +latex-modes latexhelp.txt /*latex-modes* +latex-package-scanning latex-suite.txt /*latex-package-scanning* +latex-packages latex-suite.txt /*latex-packages* +latex-page-styles latexhelp.txt /*latex-page-styles* +latex-paragraphs latexhelp.txt /*latex-paragraphs* +latex-parameters latexhelp.txt /*latex-parameters* +latex-references latexhelp.txt /*latex-references* +latex-sectioning latexhelp.txt /*latex-sectioning* +latex-spaces-boxes latexhelp.txt /*latex-spaces-boxes* +latex-special latexhelp.txt /*latex-special* +latex-start-end latexhelp.txt /*latex-start-end* +latex-suite-commands latex-suite.txt /*latex-suite-commands* +latex-suite-commands-maps latex-suite.txt /*latex-suite-commands-maps* +latex-suite-credits latex-suite.txt /*latex-suite-credits* +latex-suite-maintainer latex-suite.txt /*latex-suite-maintainer* +latex-suite-maps latex-suite.txt /*latex-suite-maps* +latex-suite-templates latex-suite.txt /*latex-suite-templates* +latex-suite.txt latex-suite.txt /*latex-suite.txt* +latex-suite.txt-toc latex-suite.txt /*latex-suite.txt-toc* +latex-terminal latexhelp.txt /*latex-terminal* +latex-toc latexhelp.txt /*latex-toc* +latex-typefaces latexhelp.txt /*latex-typefaces* +latex-ver-space latexhelp.txt /*latex-ver-space* +latex-viewing latex-suite.txt /*latex-viewing* +latexhelp.txt latexhelp.txt /*latexhelp.txt* +leqno latexhelp.txt /*leqno* +letter-class latexhelp.txt /*letter-class* +list latexhelp.txt /*list* +loaded_nerd_comments NERD_comments.txt /*loaded_nerd_comments* +loaded_potwiki potwiki.txt /*loaded_potwiki* +lr-mode latexhelp.txt /*lr-mode* +ls-completion-custom latex-suite.txt /*ls-completion-custom* +ls-completion-ref latex-suite.txt /*ls-completion-ref* +ls-completion-usage latex-suite.txt /*ls-completion-usage* +ls-filename-completion latex-suite.txt /*ls-filename-completion* +ls-general-purpose-settings latex-suite.txt /*ls-general-purpose-settings* +ls-imap-f5 latex-suite.txt /*ls-imap-f5* +ls-imap-f7 latex-suite.txt /*ls-imap-f7* +ls-imap-s-f7 latex-suite.txt /*ls-imap-s-f7* +ls-imaps-syntax latex-suite.txt /*ls-imaps-syntax* +ls-new-macros latex-suite.txt /*ls-new-macros* +ls-set-grepprg latex-suite.txt /*ls-set-grepprg* +ls-vmap-f5 latex-suite.txt /*ls-vmap-f5* +ls-vmap-f7 latex-suite.txt /*ls-vmap-f7* +ls_1 latex-suite.txt /*ls_1* +ls_10 latex-suite.txt /*ls_10* +ls_10_1 latex-suite.txt /*ls_10_1* +ls_10_10 latex-suite.txt /*ls_10_10* +ls_10_10_1 latex-suite.txt /*ls_10_10_1* +ls_10_1_1 latex-suite.txt /*ls_10_1_1* +ls_10_1_2 latex-suite.txt /*ls_10_1_2* +ls_10_2 latex-suite.txt /*ls_10_2* +ls_10_2_1 latex-suite.txt /*ls_10_2_1* +ls_10_2_2 latex-suite.txt /*ls_10_2_2* +ls_10_2_3 latex-suite.txt /*ls_10_2_3* +ls_10_2_4 latex-suite.txt /*ls_10_2_4* +ls_10_3 latex-suite.txt /*ls_10_3* +ls_10_3_1 latex-suite.txt /*ls_10_3_1* +ls_10_3_10 latex-suite.txt /*ls_10_3_10* +ls_10_3_2 latex-suite.txt /*ls_10_3_2* +ls_10_3_3 latex-suite.txt /*ls_10_3_3* +ls_10_3_4 latex-suite.txt /*ls_10_3_4* +ls_10_3_5 latex-suite.txt /*ls_10_3_5* +ls_10_3_6 latex-suite.txt /*ls_10_3_6* +ls_10_3_7 latex-suite.txt /*ls_10_3_7* +ls_10_3_8 latex-suite.txt /*ls_10_3_8* +ls_10_3_9 latex-suite.txt /*ls_10_3_9* +ls_10_4 latex-suite.txt /*ls_10_4* +ls_10_4_1 latex-suite.txt /*ls_10_4_1* +ls_10_4_2 latex-suite.txt /*ls_10_4_2* +ls_10_5 latex-suite.txt /*ls_10_5* +ls_10_5_1 latex-suite.txt /*ls_10_5_1* +ls_10_5_2 latex-suite.txt /*ls_10_5_2* +ls_10_5_3 latex-suite.txt /*ls_10_5_3* +ls_10_6 latex-suite.txt /*ls_10_6* +ls_10_6_1 latex-suite.txt /*ls_10_6_1* +ls_10_6_2 latex-suite.txt /*ls_10_6_2* +ls_10_6_3 latex-suite.txt /*ls_10_6_3* +ls_10_6_4 latex-suite.txt /*ls_10_6_4* +ls_10_6_5 latex-suite.txt /*ls_10_6_5* +ls_10_6_6 latex-suite.txt /*ls_10_6_6* +ls_10_6_7 latex-suite.txt /*ls_10_6_7* +ls_10_7 latex-suite.txt /*ls_10_7* +ls_10_7_1 latex-suite.txt /*ls_10_7_1* +ls_10_8 latex-suite.txt /*ls_10_8* +ls_10_8_1 latex-suite.txt /*ls_10_8_1* +ls_10_8_2 latex-suite.txt /*ls_10_8_2* +ls_10_8_3 latex-suite.txt /*ls_10_8_3* +ls_10_8_4 latex-suite.txt /*ls_10_8_4* +ls_10_8_5 latex-suite.txt /*ls_10_8_5* +ls_10_8_6 latex-suite.txt /*ls_10_8_6* +ls_10_8_7 latex-suite.txt /*ls_10_8_7* +ls_10_9 latex-suite.txt /*ls_10_9* +ls_10_9_1 latex-suite.txt /*ls_10_9_1* +ls_10_9_2 latex-suite.txt /*ls_10_9_2* +ls_11 latex-suite.txt /*ls_11* +ls_2 latex-suite.txt /*ls_2* +ls_3 latex-suite.txt /*ls_3* +ls_3_1 latex-suite.txt /*ls_3_1* +ls_3_10 latex-suite.txt /*ls_3_10* +ls_3_10_1 latex-suite.txt /*ls_3_10_1* +ls_3_10_2 latex-suite.txt /*ls_3_10_2* +ls_3_10_3 latex-suite.txt /*ls_3_10_3* +ls_3_11 latex-suite.txt /*ls_3_11* +ls_3_12 latex-suite.txt /*ls_3_12* +ls_3_12_1 latex-suite.txt /*ls_3_12_1* +ls_3_12_2 latex-suite.txt /*ls_3_12_2* +ls_3_1_1 latex-suite.txt /*ls_3_1_1* +ls_3_1_1_1 latex-suite.txt /*ls_3_1_1_1* +ls_3_1_1_2 latex-suite.txt /*ls_3_1_1_2* +ls_3_1_1_3 latex-suite.txt /*ls_3_1_1_3* +ls_3_1_1_4 latex-suite.txt /*ls_3_1_1_4* +ls_3_1_2 latex-suite.txt /*ls_3_1_2* +ls_3_1_3 latex-suite.txt /*ls_3_1_3* +ls_3_2 latex-suite.txt /*ls_3_2* +ls_3_3 latex-suite.txt /*ls_3_3* +ls_3_4 latex-suite.txt /*ls_3_4* +ls_3_5 latex-suite.txt /*ls_3_5* +ls_3_6 latex-suite.txt /*ls_3_6* +ls_3_7 latex-suite.txt /*ls_3_7* +ls_3_8 latex-suite.txt /*ls_3_8* +ls_3_8_1 latex-suite.txt /*ls_3_8_1* +ls_3_9 latex-suite.txt /*ls_3_9* +ls_4 latex-suite.txt /*ls_4* +ls_4_1 latex-suite.txt /*ls_4_1* +ls_4_2 latex-suite.txt /*ls_4_2* +ls_4_3 latex-suite.txt /*ls_4_3* +ls_4_3_1 latex-suite.txt /*ls_4_3_1* +ls_4_4 latex-suite.txt /*ls_4_4* +ls_4_4_1 latex-suite.txt /*ls_4_4_1* +ls_4_4_2 latex-suite.txt /*ls_4_4_2* +ls_5 latex-suite.txt /*ls_5* +ls_5_1 latex-suite.txt /*ls_5_1* +ls_5_2 latex-suite.txt /*ls_5_2* +ls_5_3 latex-suite.txt /*ls_5_3* +ls_5_3_1 latex-suite.txt /*ls_5_3_1* +ls_5_4 latex-suite.txt /*ls_5_4* +ls_5_5 latex-suite.txt /*ls_5_5* +ls_6 latex-suite.txt /*ls_6* +ls_6_1 latex-suite.txt /*ls_6_1* +ls_6_2 latex-suite.txt /*ls_6_2* +ls_6_3 latex-suite.txt /*ls_6_3* +ls_6_4 latex-suite.txt /*ls_6_4* +ls_6_5 latex-suite.txt /*ls_6_5* +ls_6_6 latex-suite.txt /*ls_6_6* +ls_7 latex-suite.txt /*ls_7* +ls_7_1 latex-suite.txt /*ls_7_1* +ls_7_2 latex-suite.txt /*ls_7_2* +ls_8 latex-suite.txt /*ls_8* +ls_8_1 latex-suite.txt /*ls_8_1* +ls_8_2 latex-suite.txt /*ls_8_2* +ls_9 latex-suite.txt /*ls_9* +ls_9_1 latex-suite.txt /*ls_9_1* +ls_9_1_1 latex-suite.txt /*ls_9_1_1* +ls_9_1_2 latex-suite.txt /*ls_9_1_2* +ls_9_2 latex-suite.txt /*ls_9_2* +ls_9_2_1 latex-suite.txt /*ls_9_2_1* +ls_9_2_10 latex-suite.txt /*ls_9_2_10* +ls_9_2_11 latex-suite.txt /*ls_9_2_11* +ls_9_2_12 latex-suite.txt /*ls_9_2_12* +ls_9_2_13 latex-suite.txt /*ls_9_2_13* +ls_9_2_14 latex-suite.txt /*ls_9_2_14* +ls_9_2_15 latex-suite.txt /*ls_9_2_15* +ls_9_2_16 latex-suite.txt /*ls_9_2_16* +ls_9_2_2 latex-suite.txt /*ls_9_2_2* +ls_9_2_3 latex-suite.txt /*ls_9_2_3* +ls_9_2_4 latex-suite.txt /*ls_9_2_4* +ls_9_2_5 latex-suite.txt /*ls_9_2_5* +ls_9_2_6 latex-suite.txt /*ls_9_2_6* +ls_9_2_7 latex-suite.txt /*ls_9_2_7* +ls_9_2_8 latex-suite.txt /*ls_9_2_8* +ls_9_2_9 latex-suite.txt /*ls_9_2_9* +ls_a_bA latex-suite.txt /*ls_a_bA* +ls_a_bB latex-suite.txt /*ls_a_bB* +ls_a_bC latex-suite.txt /*ls_a_bC* +ls_a_bD latex-suite.txt /*ls_a_bD* +ls_a_bE latex-suite.txt /*ls_a_bE* +ls_a_bF latex-suite.txt /*ls_a_bF* +ls_a_bG latex-suite.txt /*ls_a_bG* +ls_a_bH latex-suite.txt /*ls_a_bH* +ls_a_bI latex-suite.txt /*ls_a_bI* +ls_a_bJ latex-suite.txt /*ls_a_bJ* +ls_a_bK latex-suite.txt /*ls_a_bK* +ls_a_bL latex-suite.txt /*ls_a_bL* +ls_a_bM latex-suite.txt /*ls_a_bM* +ls_a_bN latex-suite.txt /*ls_a_bN* +ls_a_bO latex-suite.txt /*ls_a_bO* +ls_a_bP latex-suite.txt /*ls_a_bP* +ls_a_bQ latex-suite.txt /*ls_a_bQ* +ls_a_bR latex-suite.txt /*ls_a_bR* +ls_a_bS latex-suite.txt /*ls_a_bS* +ls_a_bT latex-suite.txt /*ls_a_bT* +ls_a_bU latex-suite.txt /*ls_a_bU* +ls_a_bV latex-suite.txt /*ls_a_bV* +ls_a_bW latex-suite.txt /*ls_a_bW* +ls_a_bX latex-suite.txt /*ls_a_bX* +ls_a_bY latex-suite.txt /*ls_a_bY* +ls_a_bZ latex-suite.txt /*ls_a_bZ* +ls_a_bc latex-suite.txt /*ls_a_bc* +ls_a_bd latex-suite.txt /*ls_a_bd* +ls_a_be latex-suite.txt /*ls_a_be* +ls_a_bf latex-suite.txt /*ls_a_bf* +ls_a_bg latex-suite.txt /*ls_a_bg* +ls_a_bh latex-suite.txt /*ls_a_bh* +ls_a_bi latex-suite.txt /*ls_a_bi* +ls_a_bj latex-suite.txt /*ls_a_bj* +ls_a_bk latex-suite.txt /*ls_a_bk* +ls_a_bl latex-suite.txt /*ls_a_bl* +ls_a_bm latex-suite.txt /*ls_a_bm* +ls_a_bn latex-suite.txt /*ls_a_bn* +ls_a_bo latex-suite.txt /*ls_a_bo* +ls_a_bp latex-suite.txt /*ls_a_bp* +ls_a_bq latex-suite.txt /*ls_a_bq* +ls_a_br latex-suite.txt /*ls_a_br* +ls_a_bs latex-suite.txt /*ls_a_bs* +ls_a_bt latex-suite.txt /*ls_a_bt* +ls_a_bu latex-suite.txt /*ls_a_bu* +ls_a_bv latex-suite.txt /*ls_a_bv* +ls_a_bw latex-suite.txt /*ls_a_bw* +ls_a_bx latex-suite.txt /*ls_a_bx* +ls_a_by latex-suite.txt /*ls_a_by* +ls_a_bz latex-suite.txt /*ls_a_bz* +ls_a_cA latex-suite.txt /*ls_a_cA* +ls_a_cB latex-suite.txt /*ls_a_cB* +ls_a_cC latex-suite.txt /*ls_a_cC* +ls_a_cD latex-suite.txt /*ls_a_cD* +ls_a_cE latex-suite.txt /*ls_a_cE* +ls_a_cF latex-suite.txt /*ls_a_cF* +ls_a_cG latex-suite.txt /*ls_a_cG* +ls_a_cH latex-suite.txt /*ls_a_cH* +ls_a_cI latex-suite.txt /*ls_a_cI* +ls_a_cJ latex-suite.txt /*ls_a_cJ* +ls_a_cK latex-suite.txt /*ls_a_cK* +ls_a_cL latex-suite.txt /*ls_a_cL* +ls_a_cM latex-suite.txt /*ls_a_cM* +ls_a_cN latex-suite.txt /*ls_a_cN* +ls_a_cO latex-suite.txt /*ls_a_cO* +ls_a_cP latex-suite.txt /*ls_a_cP* +ls_a_cQ latex-suite.txt /*ls_a_cQ* +ls_a_cR latex-suite.txt /*ls_a_cR* +ls_a_cS latex-suite.txt /*ls_a_cS* +ls_a_cT latex-suite.txt /*ls_a_cT* +ls_a_cU latex-suite.txt /*ls_a_cU* +ls_a_cV latex-suite.txt /*ls_a_cV* +ls_a_cW latex-suite.txt /*ls_a_cW* +ls_a_cX latex-suite.txt /*ls_a_cX* +ls_a_cY latex-suite.txt /*ls_a_cY* +ls_a_cZ latex-suite.txt /*ls_a_cZ* +ls_a_ca latex-suite.txt /*ls_a_ca* +ls_a_cb latex-suite.txt /*ls_a_cb* +ls_a_cc latex-suite.txt /*ls_a_cc* +ls_a_cd latex-suite.txt /*ls_a_cd* +ls_a_ce latex-suite.txt /*ls_a_ce* +ls_a_cf latex-suite.txt /*ls_a_cf* +ls_a_cg latex-suite.txt /*ls_a_cg* +ls_a_ch latex-suite.txt /*ls_a_ch* +ls_a_ci latex-suite.txt /*ls_a_ci* +ls_a_cj latex-suite.txt /*ls_a_cj* +ls_a_ck latex-suite.txt /*ls_a_ck* +ls_a_cl latex-suite.txt /*ls_a_cl* +ls_a_cm latex-suite.txt /*ls_a_cm* +ls_a_cn latex-suite.txt /*ls_a_cn* +ls_a_co latex-suite.txt /*ls_a_co* +ls_a_cp latex-suite.txt /*ls_a_cp* +ls_a_cq latex-suite.txt /*ls_a_cq* +ls_a_cr latex-suite.txt /*ls_a_cr* +ls_a_cs latex-suite.txt /*ls_a_cs* +ls_a_ct latex-suite.txt /*ls_a_ct* +ls_a_cu latex-suite.txt /*ls_a_cu* +ls_a_cv latex-suite.txt /*ls_a_cv* +ls_a_cw latex-suite.txt /*ls_a_cw* +ls_a_cx latex-suite.txt /*ls_a_cx* +ls_a_cy latex-suite.txt /*ls_a_cy* +ls_a_cz latex-suite.txt /*ls_a_cz* +ls_a_dA latex-suite.txt /*ls_a_dA* +ls_a_dB latex-suite.txt /*ls_a_dB* +ls_a_dC latex-suite.txt /*ls_a_dC* +ls_a_dD latex-suite.txt /*ls_a_dD* +ls_a_dE latex-suite.txt /*ls_a_dE* +ls_a_dF latex-suite.txt /*ls_a_dF* +ls_a_dG latex-suite.txt /*ls_a_dG* +ls_a_dH latex-suite.txt /*ls_a_dH* +ls_a_dI latex-suite.txt /*ls_a_dI* +ls_a_dJ latex-suite.txt /*ls_a_dJ* +ls_a_dK latex-suite.txt /*ls_a_dK* +ls_a_dL latex-suite.txt /*ls_a_dL* +ls_a_dM latex-suite.txt /*ls_a_dM* +ls_a_dN latex-suite.txt /*ls_a_dN* +ls_a_dO latex-suite.txt /*ls_a_dO* +ls_a_dP latex-suite.txt /*ls_a_dP* +ls_a_dQ latex-suite.txt /*ls_a_dQ* +ls_a_dR latex-suite.txt /*ls_a_dR* +ls_a_dS latex-suite.txt /*ls_a_dS* +ls_a_dT latex-suite.txt /*ls_a_dT* +ls_a_dU latex-suite.txt /*ls_a_dU* +ls_a_dV latex-suite.txt /*ls_a_dV* +ls_a_dW latex-suite.txt /*ls_a_dW* +ls_a_dX latex-suite.txt /*ls_a_dX* +ls_a_dY latex-suite.txt /*ls_a_dY* +ls_a_dZ latex-suite.txt /*ls_a_dZ* +ls_a_da latex-suite.txt /*ls_a_da* +ls_a_db latex-suite.txt /*ls_a_db* +ls_a_dc latex-suite.txt /*ls_a_dc* +ls_a_dd latex-suite.txt /*ls_a_dd* +ls_a_de latex-suite.txt /*ls_a_de* +ls_a_df latex-suite.txt /*ls_a_df* +ls_a_dg latex-suite.txt /*ls_a_dg* +ls_a_dh latex-suite.txt /*ls_a_dh* +ls_a_di latex-suite.txt /*ls_a_di* +ls_a_dj latex-suite.txt /*ls_a_dj* +ls_a_dk latex-suite.txt /*ls_a_dk* +ls_a_dl latex-suite.txt /*ls_a_dl* +ls_a_dm latex-suite.txt /*ls_a_dm* +ls_a_dn latex-suite.txt /*ls_a_dn* +ls_a_do latex-suite.txt /*ls_a_do* +ls_a_dp latex-suite.txt /*ls_a_dp* +ls_a_dq latex-suite.txt /*ls_a_dq* +ls_a_dr latex-suite.txt /*ls_a_dr* +ls_a_ds latex-suite.txt /*ls_a_ds* +ls_a_dt latex-suite.txt /*ls_a_dt* +ls_a_du latex-suite.txt /*ls_a_du* +ls_a_dv latex-suite.txt /*ls_a_dv* +ls_a_dw latex-suite.txt /*ls_a_dw* +ls_a_dx latex-suite.txt /*ls_a_dx* +ls_a_dy latex-suite.txt /*ls_a_dy* +ls_a_dz latex-suite.txt /*ls_a_dz* +ls_a_ea latex-suite.txt /*ls_a_ea* +ls_a_eb latex-suite.txt /*ls_a_eb* +ls_a_ec latex-suite.txt /*ls_a_ec* +ls_a_ed latex-suite.txt /*ls_a_ed* +ls_a_ee latex-suite.txt /*ls_a_ee* +ls_a_ef latex-suite.txt /*ls_a_ef* +ls_a_eg latex-suite.txt /*ls_a_eg* +ls_a_eh latex-suite.txt /*ls_a_eh* +ls_u_1 latex-suite.txt /*ls_u_1* +ls_u_2 latex-suite.txt /*ls_u_2* +ls_u_3 latex-suite.txt /*ls_u_3* +ls_u_4 latex-suite.txt /*ls_u_4* +math, latexhelp.txt /*math,* +math-misc latexhelp.txt /*math-misc* +math-mode latexhelp.txt /*math-mode* +math-spacing latexhelp.txt /*math-spacing* +math-symbols latexhelp.txt /*math-symbols* +math: latexhelp.txt /*math:* +math; latexhelp.txt /*math;* +matn! latexhelp.txt /*matn!* +minipage latexhelp.txt /*minipage* +normal-mode-environment-mappings latex-suite.txt /*normal-mode-environment-mappings* +notitlepage latexhelp.txt /*notitlepage* +onecolumn latexhelp.txt /*onecolumn* +oneside latexhelp.txt /*oneside* +op-opAsRightShift crefvim.txt /*op-opAsRightShift* +opAsBitAnd crefvim.txt /*opAsBitAnd* +opAsBitOr crefvim.txt /*opAsBitOr* +opAsBitXor crefvim.txt /*opAsBitXor* +openany latexhelp.txt /*openany* +openbib latexhelp.txt /*openbib* +openright latexhelp.txt /*openright* +overriding-macros latex-suite.txt /*overriding-macros* +package-actions latex-suite.txt /*package-actions* +paragraph-mode latexhelp.txt /*paragraph-mode* +part-compiling latex-suite.txt /*part-compiling* +picture latexhelp.txt /*picture* +picture-makebox latexhelp.txt /*picture-makebox* +place-holder latex-suite.txt /*place-holder* +place-holders latex-suite.txt /*place-holders* +plain latexhelp.txt /*plain* +potwiki potwiki.txt /*potwiki* +potwiki-auto-help potwiki.txt /*potwiki-auto-help* +potwiki-bugs potwiki.txt /*potwiki-bugs* +potwiki-commands potwiki.txt /*potwiki-commands* +potwiki-contents potwiki.txt /*potwiki-contents* +potwiki-customize potwiki.txt /*potwiki-customize* +potwiki-disable potwiki.txt /*potwiki-disable* +potwiki-install potwiki.txt /*potwiki-install* +potwiki-intro potwiki.txt /*potwiki-intro* +potwiki-mappings-override potwiki.txt /*potwiki-mappings-override* +potwiki-options potwiki.txt /*potwiki-options* +potwiki-requirements potwiki.txt /*potwiki-requirements* +potwiki-todo potwiki.txt /*potwiki-todo* +potwiki.txt potwiki.txt /*potwiki.txt* +potwiki_autowrite potwiki.txt /*potwiki_autowrite* +potwiki_home potwiki.txt /*potwiki_home* +potwiki_home_dir potwiki.txt /*potwiki_home_dir* +potwiki_ignore potwiki.txt /*potwiki_ignore* +potwiki_lower potwiki.txt /*potwiki_lower* +potwiki_other potwiki.txt /*potwiki_other* +potwiki_upper potwiki.txt /*potwiki_upper* +pre-lengths latexhelp.txt /*pre-lengths* +project project.txt /*project* +project-adding-mappings project.txt /*project-adding-mappings* +project-example project.txt /*project-example* +project-flags project.txt /*project-flags* +project-inheritance project.txt /*project-inheritance* +project-invoking project.txt /*project-invoking* +project-mappings project.txt /*project-mappings* +project-plugin project.txt /*project-plugin* +project-settings project.txt /*project-settings* +project-syntax project.txt /*project-syntax* +project-tips project.txt /*project-tips* +project.txt project.txt /*project.txt* +quotation latexhelp.txt /*quotation* +quote-l latexhelp.txt /*quote-l* +recommended-settings latex-suite.txt /*recommended-settings* +remapping-latex-suite-keys latex-suite.txt /*remapping-latex-suite-keys* +report-class latexhelp.txt /*report-class* +roman latexhelp.txt /*roman* +rqno latexhelp.txt /*rqno* +section-mappings latex-suite.txt /*section-mappings* +sessionmgr-about sessionmgr.txt /*sessionmgr-about* +sessionmgr-commands sessionmgr.txt /*sessionmgr-commands* +sessionmgr-configure sessionmgr.txt /*sessionmgr-configure* +showpairs showpairs.txt /*showpairs* +showpairs-changelog showpairs.txt /*showpairs-changelog* +showpairs-commands showpairs.txt /*showpairs-commands* +showpairs-configuration showpairs.txt /*showpairs-configuration* +showpairs-contents showpairs.txt /*showpairs-contents* +showpairs-highlighting showpairs.txt /*showpairs-highlighting* +showpairs.txt showpairs.txt /*showpairs.txt* +slides-class latexhelp.txt /*slides-class* +smart-backspace latex-suite.txt /*smart-backspace* +smart-keys latex-suite.txt /*smart-keys* +sqlutil SQLUtilities.txt /*sqlutil* +sqlutil-align-comma SQLUtilities.txt /*sqlutil-align-comma* +sqlutil-align-first-word SQLUtilities.txt /*sqlutil-align-first-word* +sqlutil-align-where SQLUtilities.txt /*sqlutil-align-where* +sqlutil-change_keyword-case SQLUtilities.txt /*sqlutil-change_keyword-case* +sqlutil-column-datatype SQLUtilities.txt /*sqlutil-column-datatype* +sqlutil-column-definition SQLUtilities.txt /*sqlutil-column-definition* +sqlutil-column-list SQLUtilities.txt /*sqlutil-column-list* +sqlutil-commands SQLUtilities.txt /*sqlutil-commands* +sqlutil-complementary-plugins SQLUtilities.txt /*sqlutil-complementary-plugins* +sqlutil-contents SQLUtilities.txt /*sqlutil-contents* +sqlutil-customization SQLUtilities.txt /*sqlutil-customization* +sqlutil-dependencies SQLUtilities.txt /*sqlutil-dependencies* +sqlutil-examples SQLUtilities.txt /*sqlutil-examples* +sqlutil-format-options SQLUtilities.txt /*sqlutil-format-options* +sqlutil-formatter SQLUtilities.txt /*sqlutil-formatter* +sqlutil-history SQLUtilities.txt /*sqlutil-history* +sqlutil-mappings SQLUtilities.txt /*sqlutil-mappings* +sqlutil-procedure SQLUtilities.txt /*sqlutil-procedure* +sqlutil-todo SQLUtilities.txt /*sqlutil-todo* +sub-sup latexhelp.txt /*sub-sup* +subscripts latexhelp.txt /*subscripts* +superscripts latexhelp.txt /*superscripts* +supporting-packages latex-suite.txt /*supporting-packages* +tab' latexhelp.txt /*tab'* +tab+ latexhelp.txt /*tab+* +tab- latexhelp.txt /*tab-* +tab< latexhelp.txt /*tab<* +tab= latexhelp.txt /*tab=* +tab> latexhelp.txt /*tab>* +tab` latexhelp.txt /*tab`* +taba latexhelp.txt /*taba* +tabbing latexhelp.txt /*tabbing* +tabular latexhelp.txt /*tabular* +taglist-commands taglist.txt /*taglist-commands* +taglist-configure taglist.txt /*taglist-configure* +taglist-debug taglist.txt /*taglist-debug* +taglist-extend taglist.txt /*taglist-extend* +taglist-faq taglist.txt /*taglist-faq* +taglist-functions taglist.txt /*taglist-functions* +taglist-install taglist.txt /*taglist-install* +taglist-internet taglist.txt /*taglist-internet* +taglist-intro taglist.txt /*taglist-intro* +taglist-keys taglist.txt /*taglist-keys* +taglist-menu taglist.txt /*taglist-menu* +taglist-requirements taglist.txt /*taglist-requirements* +taglist-session taglist.txt /*taglist-session* +taglist-todo taglist.txt /*taglist-todo* +taglist-using taglist.txt /*taglist-using* +taglist.txt taglist.txt /*taglist.txt* +theorem latexhelp.txt /*theorem* +titlepage latexhelp.txt /*titlepage* +totd-installation totd.txt /*totd-installation* +totd.txt totd.txt /*totd.txt* +treeExplDirSort vtreeexplorer.txt /*treeExplDirSort* +treeExplHidden vtreeexplorer.txt /*treeExplHidden* +treeExplIndent vtreeexplorer.txt /*treeExplIndent* +treeExplVertical vtreeexplorer.txt /*treeExplVertical* +treeExplWinSize vtreeexplorer.txt /*treeExplWinSize* +twocolumn latexhelp.txt /*twocolumn* +twoside latexhelp.txt /*twoside* +utl utl_usr.txt /*utl* +utl-#idref utl_ref.txt /*utl-#idref* +utl-#line utl_ref.txt /*utl-#line* +utl-#tn utl_ref.txt /*utl-#tn* +utl-#tp utl_ref.txt /*utl-#tp* +utl-:gu utl_ref.txt /*utl-:gu* +utl-absdontcombine utl_usr.txt /*utl-absdontcombine* +utl-changes utl_usr.txt /*utl-changes* +utl-chgadded utl_usr.txt /*utl-chgadded* +utl-chgchanged utl_usr.txt /*utl-chgchanged* +utl-chgincompat utl_usr.txt /*utl-chgincompat* +utl-commands utl_ref.txt /*utl-commands* +utl-commonpitfalls utl_usr.txt /*utl-commonpitfalls* +utl-credits utl_usr.txt /*utl-credits* +utl-customization utl_usr.txt /*utl-customization* +utl-dictlookup utl_usr.txt /*utl-dictlookup* +utl-examples utl_usr.txt /*utl-examples* +utl-exvimhelp utl_usr.txt /*utl-exvimhelp* +utl-exvs utl_usr.txt /*utl-exvs* +utl-fbcallmt utl_usr.txt /*utl-fbcallmt* +utl-fixed utl_usr.txt /*utl-fixed* +utl-fragexpr utl_ref.txt /*utl-fragexpr* +utl-fragmedtyp utl_ref.txt /*utl-fragmedtyp* +utl-gS utl_ref.txt /*utl-gS* +utl-gc utl_ref.txt /*utl-gc* +utl-ge utl_ref.txt /*utl-ge* +utl-gourlcmd utl_ref.txt /*utl-gourlcmd* +utl-gourlundercurs utl_ref.txt /*utl-gourlundercurs* +utl-gourlvis utl_ref.txt /*utl-gourlvis* +utl-gr utl_ref.txt /*utl-gr* +utl-gs utl_ref.txt /*utl-gs* +utl-gu utl_ref.txt /*utl-gu* +utl-gudotdir utl_usr.txt /*utl-gudotdir* +utl-gv utl_ref.txt /*utl-gv* +utl-howrelscombine utl_usr.txt /*utl-howrelscombine* +utl-internals utl_ref.txt /*utl-internals* +utl-intro utl_usr.txt /*utl-intro* +utl-knownbugs utl_usr.txt /*utl-knownbugs* +utl-mappings utl_ref.txt /*utl-mappings* +utl-plugin utl_usr.txt /*utl-plugin* +utl-protvsftype utl_usr.txt /*utl-protvsftype* +utl-reference-manual utl_ref.txt /*utl-reference-manual* +utl-smartexamples utl_usr.txt /*utl-smartexamples* +utl-spellchecker utl_usr.txt /*utl-spellchecker* +utl-start utl_usr.txt /*utl-start* +utl-startprog utl_usr.txt /*utl-startprog* +utl-tdassb utl_usr.txt /*utl-tdassb* +utl-tdassbcachem utl_usr.txt /*utl-tdassbcachem* +utl-tdcachemap utl_usr.txt /*utl-tdcachemap* +utl-tdfileisdef utl_usr.txt /*utl-tdfileisdef* +utl-tdmeddep utl_usr.txt /*utl-tdmeddep* +utl-tdwriteurls utl_usr.txt /*utl-tdwriteurls* +utl-tipsdetails utl_usr.txt /*utl-tipsdetails* +utl-todo utl_usr.txt /*utl-todo* +utl-tutforthback utl_usr.txt /*utl-tutforthback* +utl-tutfrags utl_usr.txt /*utl-tutfrags* +utl-tutmisc utl_usr.txt /*utl-tutmisc* +utl-tutmtypes utl_usr.txt /*utl-tutmtypes* +utl-tutorial utl_usr.txt /*utl-tutorial* +utl-tutothercmds utl_usr.txt /*utl-tutothercmds* +utl-tutrelabs utl_usr.txt /*utl-tutrelabs* +utl-tutsuppscms utl_usr.txt /*utl-tutsuppscms* +utl-tuttypeurl utl_usr.txt /*utl-tuttypeurl* +utl-uri-3letters utl_ref.txt /*utl-uri-3letters* +utl-uri-forbchars utl_ref.txt /*utl-uri-forbchars* +utl-uri-fragids utl_ref.txt /*utl-uri-fragids* +utl-uri-refs utl_ref.txt /*utl-uri-refs* +utl-uri-relabs utl_ref.txt /*utl-uri-relabs* +utl-uri-syntcomp utl_ref.txt /*utl-uri-syntcomp* +utl-uri-uriurl utl_ref.txt /*utl-uri-uriurl* +utl-uriprim utl_ref.txt /*utl-uriprim* +utl-useaddressbook utl_usr.txt /*utl-useaddressbook* +utl-usedesktop utl_usr.txt /*utl-usedesktop* +utl-usefwslashes utl_usr.txt /*utl-usefwslashes* +utl-useindex utl_usr.txt /*utl-useindex* +utl-useinfofile utl_usr.txt /*utl-useinfofile* +utl-userels utl_usr.txt /*utl-userels* +utl-usesourcecode utl_usr.txt /*utl-usesourcecode* +utl-v_ge utl_ref.txt /*utl-v_ge* +utl-v_gr utl_ref.txt /*utl-v_gr* +utl-v_gs utl_ref.txt /*utl-v_gs* +utl-v_gu utl_ref.txt /*utl-v_gu* +utl-v_gv utl_ref.txt /*utl-v_gv* +utl_ref.txt utl_ref.txt /*utl_ref.txt* +utl_usr.txt utl_usr.txt /*utl_usr.txt* +verbatim latexhelp.txt /*verbatim* +verse latexhelp.txt /*verse* +viewer-customization latex-suite.txt /*viewer-customization* +viki-any-word viki.txt /*viki-any-word* +viki-backslash viki.txt /*viki-backslash* +viki-bibtex viki.txt /*viki-bibtex* +viki-commands viki.txt /*viki-commands* +viki-comments viki.txt /*viki-comments* +viki-compile viki.txt /*viki-compile* +viki-customization viki.txt /*viki-customization* +viki-description viki.txt /*viki-description* +viki-descriptions viki.txt /*viki-descriptions* +viki-extended-names viki.txt /*viki-extended-names* +viki-functions viki.txt /*viki-functions* +viki-headings viki.txt /*viki-headings* +viki-highlight viki.txt /*viki-highlight* +viki-homepage viki.txt /*viki-homepage* +viki-indent-disable viki.txt /*viki-indent-disable* +viki-installation viki.txt /*viki-installation* +viki-key-bindings viki.txt /*viki-key-bindings* +viki-latex viki.txt /*viki-latex* +viki-lists viki.txt /*viki-lists* +viki-macros viki.txt /*viki-macros* +viki-markers viki.txt /*viki-markers* +viki-markup viki.txt /*viki-markup* +viki-names viki.txt /*viki-names* +viki-regions viki.txt /*viki-regions* +viki-requirements viki.txt /*viki-requirements* +viki-sharp-commands viki.txt /*viki-sharp-commands* +viki-simple-names viki.txt /*viki-simple-names* +viki-strings viki.txt /*viki-strings* +viki-symbols viki.txt /*viki-symbols* +viki-tables viki.txt /*viki-tables* +viki-tags viki.txt /*viki-tags* +viki-tasks viki.txt /*viki-tasks* +viki-textstyles viki.txt /*viki-textstyles* +viki-urls viki.txt /*viki-urls* +viki-variables viki.txt /*viki-variables* +viki-vars-ext-names viki.txt /*viki-vars-ext-names* +viki-vars-simple-names viki.txt /*viki-vars-simple-names* +viki-vars-urls viki.txt /*viki-vars-urls* +viki.txt viki.txt /*viki.txt* +vikiFamily viki.txt /*vikiFamily* +vikiLatex viki.txt /*vikiLatex* +vikiLatex-UserCommands viki.txt /*vikiLatex-UserCommands* +vikiNameSuffix viki.txt /*vikiNameSuffix* +vikiNameTypes viki.txt /*vikiNameTypes* +vikiSpecialFiles viki.txt /*vikiSpecialFiles* +vikiSpecialProtocols viki.txt /*vikiSpecialProtocols* +vikiSplit viki.txt /*vikiSplit* +vikiTextStyles viki.txt /*vikiTextStyles* +vimplate vimplate.txt /*vimplate* +vimplate-contents vimplate.txt /*vimplate-contents* +vimplate-description vimplate.txt /*vimplate-description* +vimplate-documentation vimplate.txt /*vimplate-documentation* +vimplate-example vimplate.txt /*vimplate-example* +vimplate-installation vimplate.txt /*vimplate-installation* +vimplate-requirements vimplate.txt /*vimplate-requirements* +vimplate-subroutines vimplate.txt /*vimplate-subroutines* +vimplate-usage vimplate.txt /*vimplate-usage* +visual-mode-environment-mapings latex-suite.txt /*visual-mode-environment-mapings* +vtreeexplorer vtreeexplorer.txt /*vtreeexplorer* +vtreeexplorer-? vtreeexplorer.txt /*vtreeexplorer-?* +vtreeexplorer-C vtreeexplorer.txt /*vtreeexplorer-C* +vtreeexplorer-CD vtreeexplorer.txt /*vtreeexplorer-CD* +vtreeexplorer-D vtreeexplorer.txt /*vtreeexplorer-D* +vtreeexplorer-E vtreeexplorer.txt /*vtreeexplorer-E* +vtreeexplorer-H vtreeexplorer.txt /*vtreeexplorer-H* +vtreeexplorer-R vtreeexplorer.txt /*vtreeexplorer-R* +vtreeexplorer-S vtreeexplorer.txt /*vtreeexplorer-S* +vtreeexplorer-X vtreeexplorer.txt /*vtreeexplorer-X* +vtreeexplorer-Yank vtreeexplorer.txt /*vtreeexplorer-Yank* +vtreeexplorer-a vtreeexplorer.txt /*vtreeexplorer-a* +vtreeexplorer-commands vtreeexplorer.txt /*vtreeexplorer-commands* +vtreeexplorer-config vtreeexplorer.txt /*vtreeexplorer-config* +vtreeexplorer-contents vtreeexplorer.txt /*vtreeexplorer-contents* +vtreeexplorer-cursordir vtreeexplorer.txt /*vtreeexplorer-cursordir* +vtreeexplorer-enter vtreeexplorer.txt /*vtreeexplorer-enter* +vtreeexplorer-install vtreeexplorer.txt /*vtreeexplorer-install* +vtreeexplorer-mappings vtreeexplorer.txt /*vtreeexplorer-mappings* +vtreeexplorer-o vtreeexplorer.txt /*vtreeexplorer-o* +vtreeexplorer-p vtreeexplorer.txt /*vtreeexplorer-p* +vtreeexplorer-r vtreeexplorer.txt /*vtreeexplorer-r* +vtreeexplorer-terms vtreeexplorer.txt /*vtreeexplorer-terms* +vtreeexplorer-topdir vtreeexplorer.txt /*vtreeexplorer-topdir* +vtreeexplorer-u vtreeexplorer.txt /*vtreeexplorer-u* +vtreeexplorer.txt vtreeexplorer.txt /*vtreeexplorer.txt* +why-IMAP latex-suite.txt /*why-IMAP* +wiki potwiki.txt /*wiki* +xhtml-spec css21.txt /*xhtml-spec* diff --git a/conf_slk120/vim/_vim/files/Rules.make.skel b/conf_slk120/vim/_vim/files/Rules.make.skel index 0e5f13b..9f9bfbc 100644 --- a/conf_slk120/vim/_vim/files/Rules.make.skel +++ b/conf_slk120/vim/_vim/files/Rules.make.skel @@ -2,7 +2,7 @@ # CROSS_PREFIX:=arm-linux- CC= $(CROSS_PREFIX)gcc STRIP =$(CROSS_PREFIX)strip -CFLAGS= -Wall -Werror +CFLAGS=-O3 -Wall -Werror -Wstrict-prototypes ifndef CROSS_PREFIX CFLAGS+=-DFOR_PC endif diff --git a/conf_slk120/vim/_vim/ftplugin/nice.vim b/conf_slk120/vim/_vim/ftplugin/nice.vim new file mode 100644 index 0000000..4c0a1d0 --- /dev/null +++ b/conf_slk120/vim/_vim/ftplugin/nice.vim @@ -0,0 +1 @@ +au BufRead,BufNewFile *.nice set filetype=nice diff --git a/conf_slk120/vim/_vim/syntax/nice.vim b/conf_slk120/vim/_vim/syntax/nice.vim new file mode 100644 index 0000000..45eee3b --- /dev/null +++ b/conf_slk120/vim/_vim/syntax/nice.vim @@ -0,0 +1,137 @@ +" Vim syntax file +" Language: Nice +" Maintainer: Yaheni Akhotnikau +" URL: http://eao197.narod.ru/projects/nice.vim +" Last Change: 2008 Feb 07 + +" Please check :help nice.vim for comments on some of the options available. + +" Quit when a syntax file was already loaded +if version < 600 + syntax clear +elseif exists("b:current_syntax") + finish +endif + +" don't use standard HiLink, it will not work with included syntax files +if version < 508 + command! -nargs=+ NiceHiLink hi link +else + command! -nargs=+ NiceHiLink hi def link +endif + +setlocal iskeyword+=- + +syn keyword niceClass class interface implements extends enum override +syn keyword nicePackages import package +syn keyword niceAssertions assert requires ensures +syn match niceAssertions "!assert" +syn match niceAssertions "?assert" +syn keyword niceExpressions for if else while do true false alike this super +syn keyword niceExpressions instanceof synchronized new null break continue +syn keyword niceStatements return var let try catch finally +syn keyword niceModifiers public private protected static final transient +syn keyword niceModifiers public-read private-write +syn keyword niceModifiers volatile const native inline abstract + +syn keyword niceBasicTypes byte char short int long float double String void boolean + +syn match niceOptionalType /?\i\+/ +syn match niceMandatoryType /!\i\+/ + +syn match niceSpecialSymbols /<:\|->\|=>/ + +" match the special comment /**/ +syn region niceOneLineComment start="//" end=/$/ +syn region niceMultiLineComment start="/\*" end="*/" + +" Strings and constants +syn match niceSpecialError contained "\\." +syn match niceSpecialCharError contained "[^']" +syn match niceSpecialChar contained "\\\([0-7][0-7]\{0,2\}\|[0-3][0-7][0-7]\|[\"\\'ntbrf]\|u\x\{4\}\)" +syn region niceString start=+"+ end=+"+ end=+$+ contains=niceSpecialChar,niceSpecialError + +syn region niceVerbatimString start=/"""/ end=/"""/ contains=niceSpecialChar,niceSpecialError + +syn region niceBackslashString start=+`+ end=+`+ end=+$+ contains=niceSpecialChar,niceSpecialError + +syn match niceCharacter "'[^']*'" contains=niceSpecialChar,niceSpecialCharError +syn match niceCharacter "'\\''" contains=niceSpecialChar +syn match niceCharacter "'[^\\]'" +syn match niceNumber /\<[0-9_]\+[lLfFdD]\?\>/ +syn match niceNumber /\<0[xX][0-9_a-fA-F]\+[lL]\?\>/ +syn match niceNumber /\<0[bB][01_]\+[lL]\?\>/ +syn match niceNumber "\(\<[0-9][0-9_]*\.[0-9][0-9_]*\|\.[0-9][0-9_]*\)\([eE][-+]\=[0-9][0-9_]*\)\=[fFdD]\=\>" +syn match niceNumber "\<[0-9][0-9_]*[eE][-+]\=[0-9][0-9_]*[fFdD]\=\>" + +" unicode characters +syn match niceSpecial "\\u\d\{4\}" + +if !exists("nice_ignore_javadoc") + syntax case ignore + " syntax coloring for nicedoc comments (HTML) + syntax include @niceHtml syntax/html.vim + unlet b:current_syntax + + syn region niceDocComment start="/\*\*\(\s\|$\)" end="\*/" keepend contains=niceCommentTitle,@niceHtml,niceDocTags,niceDocSeeTag + syn region niceCommentTitle contained matchgroup=niceDocComment start="/\*\*" matchgroup=niceCommentTitle keepend end="\.$" end="\.[ \t\r<&]"me=e-1 end="[^{]@"me=s-2,he=s-1 end="\*/"me=s-1,he=s-1 contains=@niceHtml,niceCommentStar,niceDocTags,niceDocSeeTag + + syn region niceDocTags contained start="{@\(link\|linkplain\|inherit[Dd]oc\|doc[rR]oot\|value\)" end="}" + syn match niceDocTags contained "@\(param\|exception\|throws\|since\)\s\+\S\+" contains=niceDocParam + syn match niceDocParam contained "\s\S\+" + syn match niceDocTags contained "@\(version\|author\|return\|deprecated\|serial\|serialField\|serialData\)\>" + syn region niceDocSeeTag contained matchgroup=niceDocTags start="@see\s\+" matchgroup=NONE end="\_."re=e-1 contains=niceDocSeeTagParam + syn match niceDocSeeTagParam contained @"\_[^"]\+"\|\|\(\k\|\.\)*\(#\k\+\((\_[^)]\+)\)\=\)\=@ extend + syntax case match +endif + +if !exists("nice_minlines") + let nice_minlines = 10 +endif +exec "syn sync ccomment niceMultiLineComment minlines=" . nice_minlines + +" The default highlighting. +if version >= 508 + NiceHiLink niceClass Statement + NiceHiLink nicePackages PreProc + NiceHiLink niceAssertions Special + NiceHiLink niceExpressions Statement + NiceHiLink niceStatements Statement + NiceHiLink niceModifiers StorageClass + NiceHiLink niceBasicTypes Type + NiceHiLink niceOptionalType Special + NiceHiLink niceMandatoryType Special + NiceHiLink niceSpecial Special + NiceHiLink niceSpecialError Error + NiceHiLink niceSpecialCharError Error + NiceHiLink niceString String + NiceHiLink niceVerbatimString String + NiceHiLink niceBackslashString String + NiceHiLink niceCharacter Character + NiceHiLink niceSpecialChar SpecialChar + NiceHiLink niceNumber Number + NiceHiLink niceError Error + NiceHiLink niceStringError Error + NiceHiLink niceStatement Statement + NiceHiLink niceSpecialSymbols Operator + NiceHiLink niceConstant Constant + NiceHiLink niceTodo Todo + NiceHiLink niceAnnotation PreProc + + NiceHiLink niceOneLineComment Comment + NiceHiLink niceMultiLineComment Comment + + NiceHiLink niceDocComment SpecialComment + NiceHiLink niceCommentTitle SpecialComment + NiceHiLink niceDocTags Special + NiceHiLink niceDocParam Function + NiceHiLink niceDocSeeTag Special + NiceHiLink niceDocSeeTagParam Function + NiceHiLink niceCommentStar SpecialComment +endif + +delcommand NiceHiLink + +let b:current_syntax = "nice" + +" vim: ts=8 diff --git a/conf_slk120/vim/_vimrc b/conf_slk120/vim/_vimrc index 17df0c9..c480ca4 100755 --- a/conf_slk120/vim/_vimrc +++ b/conf_slk120/vim/_vimrc @@ -61,6 +61,8 @@ nmap :only nmap :set noscrollbind:set scrollopt=:set nowrap:set foldmethod=manual:set foldcolumn=0:onlyzR nmap :set tags-=/usr/include/tags nmap :set tags+=/usr/include/tags +nmap :set tags+=/kernel/tags +nmap :set tags-=/kernel/tags " allow backspacing over everything in insert mode set backspace=indent,eol,start set nosmartindent @@ -147,7 +149,8 @@ if has("gui_running") syntax on set hlsearch set foldcolumn=0 - set guioptions=aegimlLtTb + set guioptions=aegimlLtb +" set guioptions=aegimlLtTb " set guioptions=aegirLtb " set guioptions=aegimrLtb "colorscheme delek @@ -188,7 +191,7 @@ set mouse=a ":language messages en_US ":language C :language time C -:language ctype C +":language ctype C :language messages C "config the tabbar @@ -256,3 +259,4 @@ set mousehide " Hide the mouse when typing text set mousemodel=extend "set helplang=cn set path=.,include,/usr/include,, +set wildmenu diff --git a/conf_slk120/xinit/Makefile b/conf_slk120/xinit/Makefile index 19c8063..47fce49 100644 --- a/conf_slk120/xinit/Makefile +++ b/conf_slk120/xinit/Makefile @@ -1,8 +1,7 @@ -help: - @echo -e "subdir:\n $(SUBDIR)\n" +all: + ${ECHO} "xinit no install" -install: +del: + ${ECHO} "xinit no del" -chown: - for _FILE in $(FILES); do $(CHOWN) $(WHOOWN) $(ARROW)/$${_FILE}; done diff --git a/conf_slk120/xorg/Makefile b/conf_slk120/xorg/Makefile index 3fb7afa..4492a6a 100644 --- a/conf_slk120/xorg/Makefile +++ b/conf_slk120/xorg/Makefile @@ -1,9 +1,6 @@ -FILES= .xinitrc -help: - @echo -e "subdir:\n $(SUBDIR)\n" +all: + ${ECHO} "xorg need install manual" -install: - @$(CP) $(FILES) $(ARROW) -chown: - for _FILE in $(FILES); do $(CHOWN) $(WHOOWN) $(ARROW)/$${_FILE}; done +del: + ${ECHO} "xorg no del" diff --git a/conf_slk120/xorg/xorg.conf.acer_1 b/conf_slk120/xorg/xorg.conf.acer_1 new file mode 100644 index 0000000..5c124a7 --- /dev/null +++ b/conf_slk120/xorg/xorg.conf.acer_1 @@ -0,0 +1,136 @@ +Section "ServerLayout" + Identifier "X.org Configured" + Screen 0 "Screen0" 0 0 + InputDevice "Mouse0" "CorePointer" + InputDevice "Keyboard0" "CoreKeyboard" +EndSection + +Section "Files" + RgbPath "/usr/share/X11/rgb" + ModulePath "/usr/lib/xorg/modules" + FontPath "/usr/share/fonts/TTF" + FontPath "/work/tmp/wqy-unibit" + FontPath "/work/tmp/wqy-bitmapfont" + FontPath "/usr/share/fonts/OTF" + FontPath "/usr/share/fonts/Type1" + FontPath "/usr/share/fonts/misc" + FontPath "/usr/share/fonts/100dpi:unscaled" + FontPath "/usr/share/fonts/75dpi/:unscaled" +EndSection + +Section "Module" + Load "glx" + Load "extmod" + Load "xtrap" + Load "record" + Load "GLcore" + Load "dbe" + Load "dri" + Load "freetype" + Load "type1" + Load "synaptics" +EndSection + +Section "InputDevice" + Identifier "Keyboard0" + Driver "kbd" + Option "XkbModel" "pc101" + Option "XkbLayout" "us" +EndSection + +Section "InputDevice" + Identifier "Mouse0" + #Driver "mouse" + Driver "synaptics" + Option "Protocol" "auto" + Option "Device" "/dev/input/mice" + Option "ZAxisMapping" "4 5 6 7" +EndSection + +Section "Monitor" + Identifier "Monitor0" + VendorName "Monitor Vendor" + ModelName "Monitor Model" + HorizSync 31.5 - 50.0 + VertRefresh 40-90 +EndSection + +Section "Device" + ### Available Driver options are:- + ### Values: : integer, : float, : "True"/"False", + ### : "String", : " Hz/kHz/MHz" + ### [arg]: arg optional + #Option "AccelMethod" # [] + #Option "SWcursor" # [] + #Option "PciRetry" # [] + #Option "NoAccel" # [] + #Option "SetMClk" # + #Option "MUXThreshold" # + #Option "ShadowFB" # [] + #Option "Rotate" # [] + #Option "VideoKey" # + #Option "NoMMIO" # [] + #Option "NoPciBurst" # [] + #Option "MMIOonly" # [] + #Option "CyberShadow" # [] + #Option "CyberStretch" # [] + #Option "XvHsync" # + #Option "XvVsync" # + #Option "XvBskew" # + #Option "XvRskew" # + #Option "FpDelay" # + #Option "Display1400" # [] + #Option "Display" # [] + #Option "GammaBrightness" # [] + #Option "TVChipset" # [] + #Option "TVSignal" # + Identifier "Card0" + Driver "trident" + VendorName "Trident Microsystems" + BoardName "CyberBlade/i1" + BusID "PCI:1:0:0" + VideoRam 32000 +# Option "UseFBDev" "true" +EndSection + +Section "Screen" + Identifier "Screen0" + Device "Card0" + Monitor "Monitor0" + DefaultDepth 24 + SubSection "Display" + Viewport 0 0 + Depth 1 + Modes "1024x768" "800x600" "640x480" + EndSubSection + SubSection "Display" + Viewport 0 0 + Depth 4 + Modes "1024x768" "800x600" "640x480" + EndSubSection + SubSection "Display" + Viewport 0 0 + Depth 8 + Modes "1024x768" "800x600" "640x480" + EndSubSection + SubSection "Display" + Viewport 0 0 + Depth 15 + Modes "1024x768" "800x600" "640x480" + EndSubSection + SubSection "Display" + Viewport 0 0 + Depth 16 + Modes "1024x768" "800x600" "640x480" + EndSubSection + SubSection "Display" + Viewport 0 0 + Depth 24 + Modes "1024x768" "800x600" "640x480" + EndSubSection +EndSection + +Section "DRI" + Mode 0666 +EndSection + -- 2.11.4.GIT