Compare commits
3 Commits
549fcb276b
...
9a78ca0c07
Author | SHA1 | Date |
---|---|---|
Sergey Kiselev | 9a78ca0c07 | 2 months ago |
Sergey Kiselev | 71655e5546 | 2 months ago |
Sergey Kiselev | 998bfd8f86 | 2 months ago |
25 changed files with 668 additions and 3560 deletions
@ -0,0 +1,71 @@ |
|||
backend = "glx"; |
|||
glx-no-stencil = true; |
|||
glx-copy-from-front = false; |
|||
glx-swap-method = "undefined"; |
|||
|
|||
shadow = true; |
|||
no-dnd-shadow = true; |
|||
no-dock-shadow = true; |
|||
clear-shadow = true; |
|||
shadow-radius = 3; |
|||
shadow-offset-x = -3; |
|||
shadow-offset-y = -3 |
|||
shadow-opacity = 0.5; |
|||
|
|||
shadow-exclude = [ |
|||
"argb", |
|||
]; |
|||
|
|||
menu-opacity = 1; |
|||
inactive-opacity = 1; |
|||
active-opacity = 1; |
|||
frame-opacity = 0.6; |
|||
inactive-opacity-override = false; |
|||
alpha-step = 0.06; |
|||
|
|||
blur-background-fixed = true; |
|||
blur-background-frame = true; |
|||
blur-background = true; |
|||
blur-background-exclude = [ |
|||
"window_type = 'dock'", |
|||
"window_type = 'desktop'" |
|||
]; |
|||
|
|||
blur-kern = [ |
|||
"11x11gaussian", |
|||
"3x3box", |
|||
"5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1", |
|||
]; |
|||
|
|||
fading = true; |
|||
fade-delta = 8; |
|||
fade-in-step = 0.03; |
|||
fade-out-step = 0.03; |
|||
fade-exclude = [ ]; |
|||
|
|||
mark-wmwin-focused = true; |
|||
mark-ovredir-focused = true; |
|||
use-ewmh-active-win = true; |
|||
detect-rounded-corners = true; |
|||
detect-client-opacity = true; |
|||
refresh-rate = 0; |
|||
vsync = "opengl-swc"; |
|||
dbe = false; |
|||
paint-on-overlay = true; |
|||
sw-opti = true; |
|||
unredir-if-possible = true; |
|||
|
|||
focus-exclude = [ ]; |
|||
|
|||
detect-transient = true; |
|||
detect-client-leader = true; |
|||
|
|||
wintypes: { |
|||
tooltip = { |
|||
fade = true; |
|||
shadow = false; |
|||
opacity = 0.85; |
|||
focus = true; |
|||
}; |
|||
}; |
|||
|
@ -1,245 +1,89 @@ |
|||
# See dunst(5) for all configuration options |
|||
|
|||
[global] |
|||
font = Liberation Sans 9 |
|||
|
|||
# Allow a small subset of html markup: |
|||
# <b>bold</b> |
|||
# <i>italic</i> |
|||
# <s>strikethrough</s> |
|||
# <u>underline</u> |
|||
# |
|||
# For a complete reference see |
|||
# <http://developer.gnome.org/pango/stable/PangoMarkupFormat.html>. |
|||
# If markup is not allowed, those tags will be stripped out of the |
|||
# message. |
|||
allow_markup = yes |
|||
|
|||
# The format of the message. Possible variables are: |
|||
# %a appname |
|||
# %s summary |
|||
# %b body |
|||
# %i iconname (including its path) |
|||
# %I iconname (without its path) |
|||
# %p progress value if set ([ 0%] to [100%]) or nothing |
|||
# Markup is allowed |
|||
format = "<b>%s</b>\n%b" |
|||
|
|||
# Sort messages by urgency. |
|||
sort = yes |
|||
|
|||
# Show how many messages are currently hidden (because of geometry). |
|||
monitor = 0 |
|||
follow = none |
|||
width = 300 |
|||
height = 300 |
|||
origin = top-right |
|||
offset = 10x50 |
|||
scale = 0 |
|||
notification_limit = 5 |
|||
progress_bar = true |
|||
progress_bar_height = 10 |
|||
progress_bar_frame_width = 1 |
|||
progress_bar_min_width = 150 |
|||
progress_bar_max_width = 280 |
|||
indicate_hidden = yes |
|||
|
|||
# Alignment of message text. |
|||
# Possible values are "left", "center" and "right". |
|||
alignment = left |
|||
|
|||
# The frequency with wich text that is longer than the notification |
|||
# window allows bounces back and forth. |
|||
# This option conflicts with "word_wrap". |
|||
# Set to 0 to disable. |
|||
bounce_freq = 0 |
|||
|
|||
# Show age of message if message is older than show_age_threshold |
|||
# seconds. |
|||
# Set to -1 to disable. |
|||
show_age_threshold = 60 |
|||
|
|||
# Split notifications into multiple lines if they don't fit into |
|||
# geometry. |
|||
word_wrap = yes |
|||
|
|||
# Ignore newlines '\n' in notifications. |
|||
ignore_newline = no |
|||
|
|||
|
|||
# The geometry of the window: |
|||
# [{width}]x{height}[+/-{x}+/-{y}] |
|||
# The geometry of the message window. |
|||
# The height is measured in number of notifications everything else |
|||
# in pixels. If the width is omitted but the height is given |
|||
# ("-geometry x2"), the message window expands over the whole screen |
|||
# (dmenu-like). If width is 0, the window expands to the longest |
|||
# message displayed. A positive x is measured from the left, a |
|||
# negative from the right side of the screen. Y is measured from |
|||
# the top and down respectevly. |
|||
# The width can be negative. In this case the actual width is the |
|||
# screen width minus the width defined in within the geometry option. |
|||
geometry = "300x5+36-36" |
|||
|
|||
# Shrink window if it's smaller than the width. Will be ignored if |
|||
# width is 0. |
|||
shrink = no |
|||
|
|||
# The transparency of the window. Range: [0; 100]. |
|||
# This option will only work if a compositing windowmanager is |
|||
# present (e.g. xcompmgr, compiz, etc.). |
|||
transparency = 0 |
|||
|
|||
# Don't remove messages, if the user is idle (no mouse or keyboard input) |
|||
# for longer than idle_threshold seconds. |
|||
# Set to 0 to disable. |
|||
idle_threshold = 120 |
|||
|
|||
# Which monitor should the notifications be displayed on. |
|||
monitor = 0 |
|||
|
|||
# Display notification on focused monitor. Possible modes are: |
|||
# mouse: follow mouse pointer |
|||
# keyboard: follow window with keyboard focus |
|||
# none: don't follow anything |
|||
# |
|||
# "keyboard" needs a windowmanager that exports the |
|||
# _NET_ACTIVE_WINDOW property. |
|||
# This should be the case for almost all modern windowmanagers. |
|||
# |
|||
# If this option is set to mouse or keyboard, the monitor option |
|||
# will be ignored. |
|||
follow = mouse |
|||
|
|||
# Should a notification popped up from history be sticky or timeout |
|||
# as if it would normally do. |
|||
sticky_history = yes |
|||
|
|||
# Maximum amount of notifications kept in history |
|||
history_length = 20 |
|||
|
|||
# Display indicators for URLs (U) and actions (A). |
|||
show_indicators = yes |
|||
|
|||
# The height of a single line. If the height is smaller than the |
|||
# font height, it will get raised to the font height. |
|||
# This adds empty space above and under the text. |
|||
line_height = 0 |
|||
|
|||
# Draw a line of "separatpr_height" pixel height between two |
|||
# notifications. |
|||
# Set to 0 to disable. |
|||
separator_height = 2 |
|||
|
|||
# Padding between text and separator. |
|||
padding = 8 |
|||
|
|||
# Horizontal padding. |
|||
horizontal_padding = 8 |
|||
|
|||
# Define a color for the separator. |
|||
# possible values are: |
|||
# * auto: dunst tries to find a color fitting to the background; |
|||
# * foreground: use the same color as the foreground; |
|||
# * frame: use the same color as the frame; |
|||
# * anything else will be interpreted as a X color. |
|||
text_icon_padding = 0 |
|||
frame_width = 3 |
|||
frame_color = "#aaaaaa" |
|||
separator_color = frame |
|||
|
|||
# Print a notification on startup. |
|||
# This is mainly for error detection, since dbus (re-)starts dunst |
|||
# automatically after a crash. |
|||
startup_notification = false |
|||
|
|||
# dmenu path. |
|||
# dmenu = /usr/bin/dmenu -p dunst: |
|||
|
|||
# Browser for opening urls in context menu. |
|||
# browser = /usr/bin/firefox -new-tab |
|||
|
|||
# Align icons left/right/off |
|||
icon_position = off |
|||
sort = yes |
|||
idle_threshold = 120 |
|||
font = Liberation Sans 10 |
|||
line_height = 0 |
|||
markup = full |
|||
format = "<b>%s</b>\n%b" |
|||
alignment = left |
|||
vertical_alignment = center |
|||
show_age_threshold = 60 |
|||
ellipsize = end |
|||
ignore_newline = no |
|||
stack_duplicates = true |
|||
hide_duplicate_count = false |
|||
show_indicators = yes |
|||
icon_position = left |
|||
min_icon_size = 0 |
|||
max_icon_size = 32 |
|||
icon_path = /home/cyrax/.icons/Papirus/16x16/status:/home/cyrax/.icons/Papirus/16x16/devices:/usr/local/share/icons/gnome/16x16/status/:/usr/local/share/icons/gnome/16x16/devices/ |
|||
sticky_history = yes |
|||
history_length = 20 |
|||
#dmenu = /usr/local/bin/dmenu -p dunst: |
|||
browser = /usr/local/bin/xdg-open |
|||
always_run_script = true |
|||
title = Dunst |
|||
class = Dunst |
|||
corner_radius = 4 |
|||
ignore_dbusclose = false |
|||
|
|||
# Paths to default icons. |
|||
icon_folders = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/ |
|||
# layer = top |
|||
force_xwayland = false |
|||
|
|||
[frame] |
|||
width = 1 |
|||
color = "#e4e4e4" |
|||
force_xinerama = false |
|||
|
|||
[shortcuts] |
|||
mouse_left_click = close_current |
|||
mouse_middle_click = do_action, close_current |
|||
mouse_right_click = close_all |
|||
|
|||
# Shortcuts are specified as [modifier+][modifier+]...key |
|||
# Available modifiers are "ctrl", "mod1" (the alt-key), "mod2", |
|||
# "mod3" and "mod4" (windows-key). |
|||
# Xev might be helpful to find names for keys. |
|||
|
|||
# Close notification. |
|||
close = ctrl+space |
|||
|
|||
# Close all notifications. |
|||
close_all = ctrl+shift+space |
|||
|
|||
# Redisplay last message(s). |
|||
# On the US keyboard layout "grave" is normally above TAB and left |
|||
# of "1". |
|||
history = ctrl+grave |
|||
|
|||
# Context menu. |
|||
context = ctrl+shift+period |
|||
[experimental] |
|||
per_monitor_dpi = false |
|||
|
|||
[urgency_low] |
|||
# IMPORTANT: colors have to be defined in quotation marks. |
|||
# Otherwise the "#" and following would be interpreted as a comment. |
|||
background = "#222222" |
|||
foreground = "#888888" |
|||
timeout = 10 |
|||
#default_icon = /path/to/icon |
|||
|
|||
[urgency_normal] |
|||
background = "#285577" |
|||
foreground = "#ffffff" |
|||
timeout = 10 |
|||
#default_icon = /path/to/icon |
|||
|
|||
[urgency_critical] |
|||
background = "#900000" |
|||
foreground = "#ffffff" |
|||
frame_color = "#ff0000" |
|||
timeout = 0 |
|||
#default_icon = /path/to/icon |
|||
|
|||
#[notify-speak] |
|||
# summary = "*" |
|||
# script = notify-speak |
|||
|
|||
# Every section that isn't one of the above is interpreted as a rules to |
|||
# override settings for certain messages. |
|||
# Messages can be matched by "appname", "summary", "body", "icon", "category", |
|||
# "msg_urgency" and you can override the "timeout", "urgency", "foreground", |
|||
# "background", "new_icon" and "format". |
|||
# Shell-like globbing will get expanded. |
|||
# |
|||
# SCRIPTING |
|||
# You can specify a script that gets run when the rule matches by |
|||
# setting the "script" option. |
|||
# The script will be called as follows: |
|||
# script appname summary body icon urgency |
|||
# where urgency can be "LOW", "NORMAL" or "CRITICAL". |
|||
# |
|||
# NOTE: if you don't want a notification to be displayed, set the format |
|||
# to "". |
|||
# NOTE: It might be helpful to run dunst -print in a terminal in order |
|||
# to find fitting options for rules. |
|||
|
|||
#[espeak] |
|||
# summary = "*" |
|||
# script = dunst_espeak.sh |
|||
|
|||
#[script-test] |
|||
# summary = "*script*" |
|||
# script = dunst_test.sh |
|||
|
|||
#[ignore] |
|||
# # This notification will not be displayed |
|||
# summary = "foobar" |
|||
# format = "" |
|||
|
|||
#[signed_on] |
|||
# appname = Pidgin |
|||
# summary = "*signed on*" |
|||
# urgency = low |
|||
# |
|||
#[signed_off] |
|||
# appname = Pidgin |
|||
# summary = *signed off* |
|||
# urgency = low |
|||
# |
|||
#[says] |
|||
# appname = Pidgin |
|||
# summary = *says* |
|||
# urgency = critical |
|||
# |
|||
#[twitter] |
|||
# appname = Pidgin |
|||
# summary = *twitter.com* |
|||
# urgency = normal |
|||
# |
|||
# vim: ft=cfg |
|||
|
@ -1,27 +1,42 @@ |
|||
#!/bin/sh |
|||
|
|||
#(dual-screen.sh) |
|||
|
|||
#(/usr/local/libexec/polkit-gnome-authentication-agent-1) & |
|||
|
|||
(sleep 2 && compton) & |
|||
|
|||
(sleep 2 && nitrogen --restore) & |
|||
(sleep 2 && /usr/local/libexec/gconfd-2) & |
|||
(sleep 2 && xscreensaver -no-splash) & |
|||
(sleep 2 && dunst -config ~/.config/dunst.rc) & |
|||
|
|||
(sleep 2 && nitrogen --restore) & |
|||
|
|||
(sleep 2 && xcompmgr) & |
|||
|
|||
(sleep 2 && tint2 -c ~/.config/tint2/panel.rc) & |
|||
(sleep 2 && tint2 -c ~/.config/tint2/launcher.rc) & |
|||
(sleep 2 && yeahconsole-start) & |
|||
(sleep 2 && tint2 -c ~/.config/tint2/panel.tint2rc) & |
|||
(sleep 2 && tint2 -c ~/.config/tint2/launcher.tint2rc) & |
|||
(sleep 2 && tint2 -c ~/.config/tint2/voice-panel.tint2rc) & |
|||
(sleep 2 && bbpager-start) & |
|||
#(sleep 2 && xxkb) & |
|||
(sleep 2 && qxkb) & |
|||
#(sleep 2 && gtmixer) & |
|||
(sleep 2 && dsbmixer -i) & |
|||
(sleep 2 && yeahconsole-start) & |
|||
|
|||
#(sleep 2 && cairo-calendar 5) & |
|||
(sleep 2 && conky-hw-monitor 5) & |
|||
(sleep 2 && conky-clock 5) & |
|||
(sleep 2 && conky-hw-monitor 2) & |
|||
(sleep 2 && conky-clock 2) & |
|||
(sleep 2 && conky-mpd5 2) & |
|||
|
|||
# Dynamic applications menu |
|||
(sleep 2 && regen-app-menu) & |
|||
(sleep 2 && apps-monitor) & |
|||
|
|||
# Syncthing service |
|||
(sleep 2 && syncthing -home="${HOME}/.config/syncthing" -no-browser >/dev/null 2>&1) & |
|||
|
|||
( |
|||
I= |
|||
while [ "${I}" == "" ]; do |
|||
sleep 1 |
|||
I=$( xwininfo -name tint2_main_panel | grep id: | cut -d' ' -f4 ) |
|||
done |
|||
sleep 2 |
|||
xxkb & |
|||
dsbmixer -i & |
|||
) & |
|||
|
|||
|
@ -1,73 +1,74 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<openbox_menu xmlns="http://openbox.org/3.4/menu"> |
|||
<menu id="system-menu" label="System"> |
|||
<item label="Customize Look and Feel"> |
|||
<action name="Execute"> |
|||
<command>lxappearance</command> |
|||
</action> |
|||
</item> |
|||
<item label="Openbox Configuration Manager"> |
|||
<action name="Execute"> |
|||
<command>obconf</command> |
|||
<startupnotify> |
|||
<enabled>yes</enabled> |
|||
</startupnotify> |
|||
</action> |
|||
</item> |
|||
<item label="Openbox Menu Editor"> |
|||
<action name="Execute"> |
|||
<command>obmenu</command> |
|||
<startupnotify> |
|||
<enabled>yes</enabled> |
|||
</startupnotify> |
|||
</action> |
|||
</item> |
|||
<item label="Tint2 Config"> |
|||
<action name="Execute"> |
|||
<command>tint2conf</command> |
|||
</action> |
|||
</item> |
|||
<separator/> |
|||
<item label="Reconfigure Openbox"> |
|||
<action name="Reconfigure"/> |
|||
</item> |
|||
<item label="Rebuild applications menu"> |
|||
<action name="Execute"> |
|||
<command>regen-app-menu</command> |
|||
</action> |
|||
</item> |
|||
</menu> |
|||
<menu id="root-menu" label="Openbox 3"> |
|||
<separator label="Openbox 3" /> |
|||
<item icon="/usr/home/cyrax/.icons/Faience/apps/16/xterm.png" label="X Terminal"> |
|||
<action name="Execute"> |
|||
<command>urxvt</command> |
|||
</action> |
|||
</item> |
|||
<item icon="/usr/home/cyrax/.icons/Faience/apps/16/system-file-manager.png" label="File browser"> |
|||
<action name="Execute"> |
|||
<command>pcmanfm --no-desktop</command> |
|||
</action> |
|||
</item> |
|||
<item icon="/usr/home/cyrax/.icons/Faience/apps/16/accessories-text-editor.png" label="Text editor"> |
|||
<action name="Execute"> |
|||
<command>leafpad</command> |
|||
</action> |
|||
</item> |
|||
<separator/> |
|||
<!-- <menu execute="ob-app-menu.pl" icon="/usr/home/cyrax/.icons/Faenza/categories/16/applications-accessories.png" id="applications-pipe-menu" label="Applications"/>--> |
|||
<menu execute="cat ~/.cache/openbox/ob-app.menu" icon="/usr/home/cyrax/.icons/Faenza/categories/16/applications-accessories.png" id="applications-pipe-menu" label="Приложения"/> |
|||
<menu icon="/usr/home/cyrax/.icons/Faenza/categories/16/applications-system.png" id="system-menu"/> |
|||
<separator/> |
|||
<item icon="/usr/home/cyrax/.icons/Faenza/actions/16/system-log-out.png" label="Log Out"> |
|||
<action name="Exit"> |
|||
<prompt>yes</prompt> |
|||
</action> |
|||
</item> |
|||
<item icon="/usr/home/cyrax/.icons/Faenza/actions/16/system-shutdown-panel.png" label="Shutdown"> |
|||
<action name="Execute"> |
|||
<command>obshutdown</command> |
|||
</action> |
|||
</item> |
|||
</menu> |
|||
<?xml version='1.0' encoding='utf-8'?> |
|||
<openbox_menu xmlns="http://openbox.org/" xmlns:ns0="http://openbox.org/3.4/menu"> |
|||
<menu id="system-menu" label="System"> |
|||
<item label="Customize Look and Feel"> |
|||
<action name="Execute"> |
|||
<command>lxappearance</command> |
|||
</action> |
|||
</item> |
|||
<item label="Openbox Configuration Manager"> |
|||
<action name="Execute"> |
|||
<command>obconf</command> |
|||
<startupnotify> |
|||
<enabled>yes</enabled> |
|||
</startupnotify> |
|||
</action> |
|||
</item> |
|||
<!-- |
|||
<item label="Openbox Menu Editor"> |
|||
<action name="Execute"> |
|||
<command>obmenu</command> |
|||
<startupnotify> |
|||
<enabled>yes</enabled> |
|||
</startupnotify> |
|||
</action> |
|||
</item> |
|||
--> |
|||
<item label="Tint2 Config"> |
|||
<action name="Execute"> |
|||
<command>tint2conf</command> |
|||
</action> |
|||
</item> |
|||
<separator /> |
|||
<item label="Reconfigure Openbox"> |
|||
<action name="Reconfigure" /> |
|||
</item> |
|||
<item label="Rebuild applications menu"> |
|||
<action name="Execute"> |
|||
<command>regen-app-menu</command> |
|||
</action> |
|||
</item> |
|||
</menu> |
|||
<menu id="root-menu" label="Openbox 3"> |
|||
<separator label="Openbox 3" /> |
|||
<item icon="/usr/home/cyrax/.icons/Gant/apps/terminal.png" label="X Terminal"> |
|||
<action name="Execute"> |
|||
<command>urxvt</command> |
|||
</action> |
|||
</item> |
|||
<item icon="/usr/home/cyrax/.icons/Gant/apps/system-file-manager.png" label="File browser"> |
|||
<action name="Execute"> |
|||
<command>pcmanfm --no-desktop</command> |
|||
</action> |
|||
</item> |
|||
<item icon="/usr/home/cyrax/.icons/Gant/apps/text-editor.png" label="Text editor"> |
|||
<action name="Execute"> |
|||
<command>gedit</command> |
|||
</action> |
|||
</item> |
|||
<separator /> |
|||
<menu icon="/usr/home/cyrax/.icons/Gant/categories/applications-all.png" execute="cat ~/.cache/openbox/apps.menu" id="applications-pipe-menu" label="Applications" /> |
|||
<menu icon="/usr/home/cyrax/.icons/Gant/categories/applications-system.png" id="system-menu" /> |
|||
<separator /> |
|||
<item icon="/usr/home/cyrax/.icons/Gant/actions/system-log-out.png" label="Log Out"> |
|||
<action name="Exit"> |
|||
<prompt>yes</prompt> |
|||
</action> |
|||
</item> |
|||
<item icon="/usr/home/cyrax/.icons/Gant/actions/system-shutdown.png" label="Shutdown"> |
|||
<action name="Execute"> |
|||
<command>obshutdown</command> |
|||
</action> |
|||
</item> |
|||
</menu> |
|||
</openbox_menu> |
|||
|
File diff suppressed because it is too large
@ -0,0 +1,4 @@ |
|||
*~ |
|||
*.rej |
|||
*.orig |
|||
*.sw[p-z] |
@ -1,6 +0,0 @@ |
|||
let g:netrw_dirhistmax =10 |
|||
let g:netrw_dirhist_cnt =4 |
|||
let g:netrw_dirhist_1='/usr/home/cyrax/.vim' |
|||
let g:netrw_dirhist_2='/usr/home/cyrax/tmp/conky-master/build/lua/CMakeFiles/conky-cairo.dir' |
|||
let g:netrw_dirhist_3='/usr/home/cyrax/.config/tint2/launcher' |
|||
let g:netrw_dirhist_4='/usr/home/cyrax/.conky/hwmon/templates' |
@ -1,9 +0,0 @@ |
|||
Vim filetype detection and syntax highlighting scripts for conky. |
|||
|
|||
Individual users can place them your personal .vim directory: |
|||
|
|||
~/.vim/ftdetect/conkyrc.vim |
|||
~/.vim/syntax/conkyrc.vim |
|||
|
|||
Refer to your vim site documentation for system-wide installation. |
|||
|
@ -1,861 +0,0 @@ |
|||
" Vim completion script |
|||
" Language: HTML and XHTML |
|||
" Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl ) |
|||
" Last Change: 2006 Oct 19 |
|||
" Modified: othree <othree@gmail.com> |
|||
" Changes: Add HTML5, WAI-ARIA support |
|||
" Last Change: 2010 Sep 25 |
|||
|
|||
if !exists('g:aria_attributes_complete') |
|||
let g:aria_attributes_complete = 1 |
|||
endif |
|||
|
|||
function! htmlcomplete#CompleteTags(findstart, base) |
|||
if a:findstart |
|||
" locate the start of the word |
|||
let line = getline('.') |
|||
let start = col('.') - 1 |
|||
let curline = line('.') |
|||
let compl_begin = col('.') - 2 |
|||
while start >= 0 && line[start - 1] =~ '\(\k\|[!:.-]\)' |
|||
let start -= 1 |
|||
endwhile |
|||
" Handling of entities {{{ |
|||
if start >= 0 && line[start - 1] =~ '&' |
|||
let b:entitiescompl = 1 |
|||
let b:compl_context = '' |
|||
return start |
|||
endif |
|||
" }}} |
|||
" Handling of <style> tag {{{ |
|||
let stylestart = searchpair('<style\>', '', '<\/style\>', "bnW") |
|||
let styleend = searchpair('<style\>', '', '<\/style\>', "nW") |
|||
if stylestart != 0 && styleend != 0 |
|||
if stylestart <= curline && styleend >= curline |
|||
let start = col('.') - 1 |
|||
let b:csscompl = 1 |
|||
while start >= 0 && line[start - 1] =~ '\(\k\|-\)' |
|||
let start -= 1 |
|||
endwhile |
|||
endif |
|||
endif |
|||
" }}} |
|||
" Handling of <script> tag {{{ |
|||
let scriptstart = searchpair('<script\>', '', '<\/script\>', "bnW") |
|||
let scriptend = searchpair('<script\>', '', '<\/script\>', "nW") |
|||
if scriptstart != 0 && scriptend != 0 |
|||
if scriptstart <= curline && scriptend >= curline |
|||
let start = col('.') - 1 |
|||
let b:jscompl = 1 |
|||
let b:jsrange = [scriptstart, scriptend] |
|||
while start >= 0 && line[start - 1] =~ '\k' |
|||
let start -= 1 |
|||
endwhile |
|||
" We are inside of <script> tag. But we should also get contents |
|||
" of all linked external files and (secondary, less probably) other <script> tags |
|||
" This logic could possible be done in separate function - may be |
|||
" reused in events scripting (also with option could be reused for |
|||
" CSS |
|||
let b:js_extfiles = [] |
|||
let l = line('.') |
|||
let c = col('.') |
|||
call cursor(1,1) |
|||
while search('<\@<=script\>', 'W') && line('.') <= l |
|||
if synIDattr(synID(line('.'),col('.')-1,0),"name") !~? 'comment' |
|||
let sname = matchstr(getline('.'), '<script[^>]*src\s*=\s*\([''"]\)\zs.\{-}\ze\1') |
|||
if filereadable(sname) |
|||
let b:js_extfiles += readfile(sname) |
|||
endif |
|||
endif |
|||
endwhile |
|||
call cursor(1,1) |
|||
let js_scripttags = [] |
|||
while search('<script\>', 'W') && line('.') < l |
|||
if matchstr(getline('.'), '<script[^>]*src') == '' |
|||
let js_scripttag = getline(line('.'), search('</script>', 'W')) |
|||
let js_scripttags += js_scripttag |
|||
endif |
|||
endwhile |
|||
let b:js_extfiles += js_scripttags |
|||
call cursor(l,c) |
|||
unlet! l c |
|||
endif |
|||
endif |
|||
" }}} |
|||
if !exists("b:csscompl") && !exists("b:jscompl") |
|||
let b:compl_context = getline('.')[0:(compl_begin)] |
|||
if b:compl_context !~ '<[^>]*$' |
|||
" Look like we may have broken tag. Check previous lines. |
|||
let i = 1 |
|||
while 1 |
|||
let context_line = getline(curline-i) |
|||
if context_line =~ '<[^>]*$' |
|||
" Yep, this is this line |
|||
let context_lines = getline(curline-i, curline-1) + [b:compl_context] |
|||
let b:compl_context = join(context_lines, ' ') |
|||
break |
|||
elseif context_line =~ '>[^<]*$' || i == curline |
|||
" We are in normal tag line, no need for completion at all |
|||
" OR reached first line without tag at all |
|||
let b:compl_context = '' |
|||
break |
|||
endif |
|||
let i += 1 |
|||
endwhile |
|||
" Make sure we don't have counter |
|||
unlet! i |
|||
endif |
|||
let b:compl_context = matchstr(b:compl_context, '.*\zs<.*') |
|||
|
|||
" Return proper start for on-events. Without that beginning of |
|||
" completion will be badly reported |
|||
if b:compl_context =~? 'on[a-z]*\s*=\s*\(''[^'']*\|"[^"]*\)$' |
|||
let start = col('.') - 1 |
|||
while start >= 0 && line[start - 1] =~ '\k' |
|||
let start -= 1 |
|||
endwhile |
|||
endif |
|||
" If b:compl_context begins with <? we are inside of PHP code. It |
|||
" wasn't closed so PHP completion passed it to HTML |
|||
if &filetype =~? 'php' && b:compl_context =~ '^<?' |
|||
let b:phpcompl = 1 |
|||
let start = col('.') - 1 |
|||
while start >= 0 && line[start - 1] =~ '[a-zA-Z_0-9\x7f-\xff$]' |
|||
let start -= 1 |
|||
endwhile |
|||
endif |
|||
else |
|||
let b:compl_context = getline('.')[0:compl_begin] |
|||
endif |
|||
return start |
|||
else |
|||
" Initialize base return lists |
|||
let res = [] |
|||
let res2 = [] |
|||
" a:base is very short - we need context |
|||
let context = b:compl_context |
|||
" Check if we should do CSS completion inside of <style> tag |
|||
" or JS completion inside of <script> tag or PHP completion in case of <? |
|||
" tag AND &ft==php |
|||
if exists("b:csscompl") |
|||
unlet! b:csscompl |
|||
let context = b:compl_context |
|||
unlet! b:compl_context |
|||
return csscomplete#CompleteCSS(0, context) |
|||
elseif exists("b:jscompl") |
|||
unlet! b:jscompl |
|||
return javascriptcomplete#CompleteJS(0, a:base) |
|||
elseif exists("b:phpcompl") |
|||
unlet! b:phpcompl |
|||
let context = b:compl_context |
|||
return phpcomplete#CompletePHP(0, a:base) |
|||
else |
|||
if len(b:compl_context) == 0 && !exists("b:entitiescompl") |
|||
return [] |
|||
endif |
|||
let context = matchstr(b:compl_context, '.\zs.*') |
|||
endif |
|||
unlet! b:compl_context |
|||
" Entities completion {{{ |
|||
if exists("b:entitiescompl") |
|||
unlet! b:entitiescompl |
|||
|
|||
if !exists("b:html_doctype") |
|||
call htmlcomplete#CheckDoctype() |
|||
endif |
|||
if !exists("b:html_omni") |
|||
"runtime! autoload/xml/xhtml10s.vim |
|||
call htmlcomplete#LoadData() |
|||
endif |
|||
if g:aria_attributes_complete == 1 && !exists("b:aria_omni") |
|||
call htmlcomplete#LoadAria() |
|||
endif |
|||
|
|||
let entities = b:html_omni['vimxmlentities'] |
|||
|
|||
if len(a:base) == 1 |
|||
for m in entities |
|||
if m =~ '^'.a:base |
|||
call add(res, m.';') |
|||
endif |
|||
endfor |
|||
return res |
|||
else |
|||
for m in entities |
|||
if m =~? '^'.a:base |
|||
call add(res, m.';') |
|||
elseif m =~? a:base |
|||
call add(res2, m.';') |
|||
endif |
|||
endfor |
|||
|
|||
return res + res2 |
|||
endif |
|||
|
|||
|
|||
endif |
|||
" }}} |
|||
if context =~ '>' |
|||
" Generally if context contains > it means we are outside of tag and |
|||
" should abandon action - with one exception: <style> span { bo |
|||
if context =~ 'style[^>]\{-}>[^<]\{-}$' |
|||
return csscomplete#CompleteCSS(0, context) |
|||
elseif context =~ 'script[^>]\{-}>[^<]\{-}$' |
|||
let b:jsrange = [line('.'), search('<\/script\>', 'nW')] |
|||
return javascriptcomplete#CompleteJS(0, context) |
|||
else |
|||
return [] |
|||
endif |
|||
endif |
|||
|
|||
" If context contains > it means we are already outside of tag and we |
|||
" should abandon action |
|||
" If context contains white space it is attribute. |
|||
" It can be also value of attribute. |
|||
" We have to get first word to offer proper completions |
|||
if context == '' |
|||
let tag = '' |
|||
else |
|||
let tag = split(context)[0] |
|||
" Detect if tag is uppercase to return in proper case, |
|||
" we need to make it lowercase for processing |
|||
if tag =~ '^\u*$' |
|||
let uppercase_tag = 1 |
|||
let tag = tolower(tag) |
|||
else |
|||
let uppercase_tag = 0 |
|||
endif |
|||
endif |
|||
" Get last word, it should be attr name |
|||
let attr = matchstr(context, '\S\+="[^"]*$') |
|||
if attr == '' |
|||
let attr = matchstr(context, '.*\s\zs.*') |
|||
endif |
|||
" Possible situations where any prediction would be difficult: |
|||
" 1. Events attributes |
|||
if context =~ '\s' |
|||
" Sort out style, class, and on* cases |
|||
if context =~? "\\s\\(on[a-z]+\\|id\\|style\\|class\\)\\s*=\\s*[\"']" |
|||
" Id, class completion {{{ |
|||
if context =~? "\\(id\\|class\\)\\s*=\\s*[\"'][a-zA-Z0-9_ -]*$" |
|||
if context =~? "class\\s*=\\s*[\"'][a-zA-Z0-9_ -]*$" |
|||
let search_for = "class" |
|||
elseif context =~? "id\\s*=\\s*[\"'][a-zA-Z0-9_ -]*$" |
|||
let search_for = "id" |
|||
endif |
|||
" Handle class name completion |
|||
" 1. Find lines of <link stylesheet> |
|||
" 1a. Check file for @import |
|||
" 2. Extract filename(s?) of stylesheet, |
|||
call cursor(1,1) |
|||
let head = getline(search('<head\>'), search('<\/head>')) |
|||
let headjoined = join(copy(head), ' ') |
|||
if headjoined =~ '<style' |
|||
" Remove possibly confusing CSS operators |
|||
let stylehead = substitute(headjoined, '+>\*[,', ' ', 'g') |
|||
if search_for == 'class' |
|||
let styleheadlines = split(stylehead) |
|||
let headclasslines = filter(copy(styleheadlines), "v:val =~ '\\([a-zA-Z0-9:]\\+\\)\\?\\.[a-zA-Z0-9_-]\\+'") |
|||
else |
|||
let stylesheet = split(headjoined, '[{}]') |
|||
" Get all lines which fit id syntax |
|||
let classlines = filter(copy(stylesheet), "v:val =~ '#[a-zA-Z0-9_-]\\+'") |
|||
" Filter out possible color definitions |
|||
call filter(classlines, "v:val !~ ':\\s*#[a-zA-Z0-9_-]\\+'") |
|||
" Filter out complex border definitions |
|||
call filter(classlines, "v:val !~ '\\(none\\|hidden\\|dotted\\|dashed\\|solid\\|double\\|groove\\|ridge\\|inset\\|outset\\)\\s*#[a-zA-Z0-9_-]\\+'") |
|||
let templines = join(classlines, ' ') |
|||
let headclasslines = split(templines) |
|||
call filter(headclasslines, "v:val =~ '#[a-zA-Z0-9_-]\\+'") |
|||
endif |
|||
let internal = 1 |
|||
else |
|||
let internal = 0 |
|||
endif |
|||
let styletable = [] |
|||
let secimportfiles = [] |
|||
let filestable = filter(copy(head), "v:val =~ '\\(@import\\|link.*stylesheet\\)'") |
|||
for line in filestable |
|||
if line =~ "@import" |
|||
let styletable += [matchstr(line, "import\\s\\+\\(url(\\)\\?[\"']\\?\\zs\\f\\+\\ze")] |
|||
elseif line =~ "<link" |
|||
let styletable += [matchstr(line, "href\\s*=\\s*[\"']\\zs\\f\\+\\ze")] |
|||
endif |
|||
endfor |
|||
for file in styletable |
|||
if filereadable(file) |
|||
let stylesheet = readfile(file) |
|||
let secimport = filter(copy(stylesheet), "v:val =~ '@import'") |
|||
if len(secimport) > 0 |
|||
for line in secimport |
|||
let secfile = matchstr(line, "import\\s\\+\\(url(\\)\\?[\"']\\?\\zs\\f\\+\\ze") |
|||
let secfile = fnamemodify(file, ":p:h").'/'.secfile |
|||
let secimportfiles += [secfile] |
|||
endfor |
|||
endif |
|||
endif |
|||
endfor |
|||
let cssfiles = styletable + secimportfiles |
|||
let classes = [] |
|||
for file in cssfiles |
|||
if filereadable(file) |
|||
let stylesheet = readfile(file) |
|||
let stylefile = join(stylesheet, ' ') |
|||
let stylefile = substitute(stylefile, '+>\*[,', ' ', 'g') |
|||
if search_for == 'class' |
|||
let stylesheet = split(stylefile) |
|||
let classlines = filter(copy(stylesheet), "v:val =~ '\\([a-zA-Z0-9:]\\+\\)\\?\\.[a-zA-Z0-9_-]\\+'") |
|||
else |
|||
let stylesheet = split(stylefile, '[{}]') |
|||
" Get all lines which fit id syntax |
|||
let classlines = filter(copy(stylesheet), "v:val =~ '#[a-zA-Z0-9_-]\\+'") |
|||
" Filter out possible color definitions |
|||
call filter(classlines, "v:val !~ ':\\s*#[a-zA-Z0-9_-]\\+'") |
|||
" Filter out complex border definitions |
|||
call filter(classlines, "v:val !~ '\\(none\\|hidden\\|dotted\\|dashed\\|solid\\|double\\|groove\\|ridge\\|inset\\|outset\\)\\s*#[a-zA-Z0-9_-]\\+'") |
|||
let templines = join(classlines, ' ') |
|||
let stylelines = split(templines) |
|||
let classlines = filter(stylelines, "v:val =~ '#[a-zA-Z0-9_-]\\+'") |
|||
|
|||
endif |
|||
" We gathered classes definitions from all external files |
|||
let classes += classlines |
|||
endif |
|||
endfor |
|||
if internal == 1 |
|||
let classes += headclasslines |
|||
endif |
|||
|
|||
if search_for == 'class' |
|||
let elements = {} |
|||
for element in classes |
|||
if element =~ '^\.' |
|||
let class = matchstr(element, '^\.\zs[a-zA-Z][a-zA-Z0-9_-]*\ze') |
|||
let class = substitute(class, ':.*', '', '') |
|||
if has_key(elements, 'common') |
|||
let elements['common'] .= ' '.class |
|||
else |
|||
let elements['common'] = class |
|||
endif |
|||
else |
|||
let class = matchstr(element, '[a-zA-Z1-6]*\.\zs[a-zA-Z][a-zA-Z0-9_-]*\ze') |
|||
let tagname = tolower(matchstr(element, '[a-zA-Z1-6]*\ze.')) |
|||
if tagname != '' |
|||
if has_key(elements, tagname) |
|||
let elements[tagname] .= ' '.class |
|||
else |
|||
let elements[tagname] = class |
|||
endif |
|||
endif |
|||
endif |
|||
endfor |
|||
|
|||
if has_key(elements, tag) && has_key(elements, 'common') |
|||
let values = split(elements[tag]." ".elements['common']) |
|||
elseif has_key(elements, tag) && !has_key(elements, 'common') |
|||
let values = split(elements[tag]) |
|||
elseif !has_key(elements, tag) && has_key(elements, 'common') |
|||
let values = split(elements['common']) |
|||
else |
|||
return [] |
|||
endif |
|||
|
|||
elseif search_for == 'id' |
|||
" Find used IDs |
|||
" 1. Catch whole file |
|||
let filelines = getline(1, line('$')) |
|||
" 2. Find lines with possible id |
|||
let used_id_lines = filter(filelines, 'v:val =~ "id\\s*=\\s*[\"''][a-zA-Z0-9_-]\\+"') |
|||
" 3a. Join all filtered lines |
|||
let id_string = join(used_id_lines, ' ') |
|||
" 3b. And split them to be sure each id is in separate item |
|||
let id_list = split(id_string, 'id\s*=\s*') |
|||
" 4. Extract id values |
|||
let used_id = map(id_list, 'matchstr(v:val, "[\"'']\\zs[a-zA-Z0-9_-]\\+\\ze")') |
|||
let joined_used_id = ','.join(used_id, ',').',' |
|||
|
|||
let allvalues = map(classes, 'matchstr(v:val, ".*#\\zs[a-zA-Z0-9_-]\\+")') |
|||
|
|||
let values = [] |
|||
|
|||
for element in classes |
|||
if joined_used_id !~ ','.element.',' |
|||
let values += [element] |
|||
endif |
|||
|
|||
endfor |
|||
|
|||
endif |
|||
|
|||
" We need special version of sbase |
|||
let classbase = matchstr(context, ".*[\"']") |
|||
let classquote = matchstr(classbase, '.$') |
|||
|
|||
let entered_class = matchstr(attr, ".*=\\s*[\"']\\zs.*") |
|||
|
|||
for m in sort(values) |
|||
if m =~? '^'.entered_class |
|||
call add(res, m . classquote) |
|||
elseif m =~? entered_class |
|||
call add(res2, m . classquote) |
|||
endif |
|||
endfor |
|||
|
|||
return res + res2 |
|||
|
|||
elseif context =~? "style\\s*=\\s*[\"'][^\"']*$" |
|||
return csscomplete#CompleteCSS(0, context) |
|||
|
|||
endif |
|||
" }}} |
|||
" Complete on-events {{{ |
|||
if context =~? 'on[a-z]*\s*=\s*\(''[^'']*\|"[^"]*\)$' |
|||
" We have to: |
|||
" 1. Find external files |
|||
let b:js_extfiles = [] |
|||
let l = line('.') |
|||
let c = col('.') |
|||
call cursor(1,1) |
|||
while search('<\@<=script\>', 'W') && line('.') <= l |
|||
if synIDattr(synID(line('.'),col('.')-1,0),"name") !~? 'comment' |
|||
let sname = matchstr(getline('.'), '<script[^>]*src\s*=\s*\([''"]\)\zs.\{-}\ze\1') |
|||
if filereadable(sname) |
|||
let b:js_extfiles += readfile(sname) |
|||
endif |
|||
endif |
|||
endwhile |
|||
" 2. Find at least one <script> tag |
|||
call cursor(1,1) |
|||
let js_scripttags = [] |
|||
while search('<script\>', 'W') && line('.') < l |
|||
if matchstr(getline('.'), '<script[^>]*src') == '' |
|||
let js_scripttag = getline(line('.'), search('</script>', 'W')) |
|||
let js_scripttags += js_scripttag |
|||
endif |
|||
endwhile |
|||
let b:js_extfiles += js_scripttags |
|||
|
|||
" 3. Proper call for javascriptcomplete#CompleteJS |
|||
call cursor(l,c) |
|||
let js_context = matchstr(a:base, '\k\+$') |
|||
let js_shortcontext = substitute(a:base, js_context.'$', '', '') |
|||
let b:compl_context = context |
|||
let b:jsrange = [l, l] |
|||
unlet! l c |
|||
return javascriptcomplete#CompleteJS(0, js_context) |
|||
|
|||
endif |
|||
|
|||
" }}} |
|||
let stripbase = matchstr(context, ".*\\(on[a-zA-Z]*\\|style\\|class\\)\\s*=\\s*[\"']\\zs.*") |
|||
" Now we have context stripped from all chars up to style/class. |
|||
" It may fail with some strange style value combinations. |
|||
if stripbase !~ "[\"']" |
|||
return [] |
|||
endif |
|||
endif |
|||
" Value of attribute completion {{{ |
|||
" If attr contains =\s*[\"'] we catched value of attribute |
|||
if attr =~ "=\s*[\"']" || attr =~ "=\s*$" |
|||
" Let do attribute specific completion |
|||
let attrname = matchstr(attr, '.*\ze\s*=') |
|||
let entered_value = matchstr(attr, ".*=\\s*[\"']\\?\\zs.*") |
|||
let values = [] |
|||
" Load data {{{ |
|||
if !exists("b:html_doctype") |
|||
call htmlcomplete#CheckDoctype() |
|||
endif |
|||
if !exists("b:html_omni") |
|||
"runtime! autoload/xml/xhtml10s.vim |
|||
call htmlcomplete#LoadData() |
|||
endif |
|||
if g:aria_attributes_complete == 1 && !exists("b:aria_omni") |
|||
call htmlcomplete#LoadAria() |
|||
endif |
|||
" }}} |
|||
if attrname == 'href' |
|||
" Now we are looking for local anchors defined by name or id |
|||
if entered_value =~ '^#' |
|||
let file = join(getline(1, line('$')), ' ') |
|||
" Split it be sure there will be one id/name element in |
|||
" item, it will be also first word [a-zA-Z0-9_-] in element |
|||
let oneelement = split(file, "\\(meta \\)\\@<!\\(name\\|id\\)\\s*=\\s*[\"']") |
|||
for i in oneelement |
|||
let values += ['#'.matchstr(i, "^[a-zA-Z][a-zA-Z0-9%_-]*")] |
|||
endfor |
|||
endif |
|||
else |
|||
if has_key(b:html_omni, tag) && has_key(b:html_omni[tag][1], attrname) |
|||
let values = b:html_omni[tag][1][attrname] |
|||
elseif attrname =~ '^aria-' && exists("b:aria_omni") && has_key(b:aria_omni['aria_attributes'], attrname) |
|||
let values = b:aria_omni['aria_attributes'][attrname] |
|||
else |
|||
return [] |
|||
endif |
|||
endif |
|||
|
|||
if len(values) == 0 |
|||
return [] |
|||
endif |
|||
|
|||
" We need special version of sbase |
|||
let attrbase = matchstr(context, ".*[\"']") |
|||
let attrquote = matchstr(attrbase, '.$') |
|||
if attrquote !~ "['\"]" |
|||
let attrquoteopen = '"' |
|||
let attrquote = '"' |
|||
else |
|||
let attrquoteopen = '' |
|||
endif |
|||
" Multi value attributes don't need ending quote |
|||
let info = '' |
|||
if has_key(b:html_omni['vimxmlattrinfo'], attrname) |
|||
let info = b:html_omni['vimxmlattrinfo'][attrname][0] |
|||
elseif exists("b:aria_omni") && has_key(b:aria_omni['vimariaattrinfo'], attrname) |
|||
let info = b:aria_omni['vimariaattrinfo'][attrname][0] |
|||
endif |
|||
if info =~ "^\\*" |
|||
let attrquote = '' |
|||
endif |
|||
|
|||
if len(entered_value) > 0 |
|||
if entered_value =~ "\\s$" |
|||
let entered_value = '' |
|||
else |
|||
let entered_value = split(entered_value)[-1] |
|||
endif |
|||
endif |
|||
for m in values |
|||
" This if is needed to not offer all completions as-is |
|||
" alphabetically but sort them. Those beginning with entered |
|||
" part will be as first choices |
|||
if m =~ '^'.entered_value |
|||
call add(res, attrquoteopen . m . attrquote) |
|||
elseif m =~ entered_value |
|||
call add(res2, attrquoteopen . m . attrquote) |
|||
endif |
|||
endfor |
|||
|
|||
return res + res2 |
|||
|
|||
endif |
|||
" }}} |
|||
" Attribute completion {{{ |
|||
" Shorten context to not include last word |
|||
let sbase = matchstr(context, '.*\ze\s.*') |
|||
|
|||
" Load data {{{ |
|||
if !exists("b:html_doctype") |
|||
call htmlcomplete#CheckDoctype() |
|||
endif |
|||
if !exists("b:html_omni") |
|||
call htmlcomplete#LoadData() |
|||
endif |
|||
if g:aria_attributes_complete == 1 && !exists("b:aria_omni") |
|||
call htmlcomplete#LoadAria() |
|||
endif |
|||
" }}} |
|||
|
|||
if has_key(b:html_omni, tag) |
|||
let attrs = keys(b:html_omni[tag][1]) |
|||
else |
|||
return [] |
|||
endif |
|||
if exists("b:aria_omni") |
|||
let roles = [] |
|||
if has_key(b:aria_omni['default_role'], tag) |
|||
let roles = [b:aria_omni['default_role'][tag]] |
|||
endif |
|||
if context =~ 'role=' |
|||
let start = matchend(context, "role=['\"]") |
|||
let end = matchend(context, "[a-z ]\\+['\"]", start) |
|||
if start != -1 && end != -1 |
|||
let roles = split(strpart(context, start, end-start-1), " ") |
|||
endif |
|||
endif |
|||
for i in range(len(roles)) |
|||
let role = roles[i] |
|||
if has_key(b:aria_omni['role_attributes'], role) |
|||
let attrs = extend(attrs, b:aria_omni['role_attributes'][role]) |
|||
endif |
|||
endfor |
|||
endif |
|||
|
|||
for m in sort(attrs) |
|||
if m =~ '^'.attr |
|||
call add(res, m) |
|||
elseif m =~ attr |
|||
call add(res2, m) |
|||
endif |
|||
endfor |
|||
"let menu = res + res2 |
|||
let menu = res |
|||
if has_key(b:html_omni, 'vimxmlattrinfo') || (exists("b:aria_omni") && has_key(b:aria_omni, 'vimariaattrinfo')) |
|||
let final_menu = [] |
|||
for i in range(len(menu)) |
|||
let item = menu[i] |
|||
if has_key(b:html_omni['vimxmlattrinfo'], item) |
|||
let m_menu = b:html_omni['vimxmlattrinfo'][item][0] |
|||
let m_info = b:html_omni['vimxmlattrinfo'][item][1] |
|||
elseif exists("b:aria_omni") && has_key(b:aria_omni['vimariaattrinfo'], item) |
|||
let m_menu = b:aria_omni['vimariaattrinfo'][item][0] |
|||
let m_info = b:aria_omni['vimariaattrinfo'][item][1] |
|||
else |
|||
let m_menu = '' |
|||
let m_info = '' |
|||
endif |
|||
if item =~ '^aria-' && exists("b:aria_omni") |
|||
if len(b:aria_omni['aria_attributes'][item]) > 0 && b:aria_omni['aria_attributes'][item][0] =~ '^\(BOOL\|'.item.'\)$' |
|||
let item = item |
|||
let m_menu = 'Bool' |
|||
else |
|||
let item .= '="' |
|||
endif |
|||
else |
|||
if len(b:html_omni[tag][1][item]) > 0 && b:html_omni[tag][1][item][0] =~ '^\(BOOL\|'.item.'\)$' |
|||
let item = item |
|||
let m_menu = 'Bool' |
|||
else |
|||
let item .= '="' |
|||
endif |
|||
endif |
|||
let final_menu += [{'word':item, 'menu':m_menu, 'info':m_info}] |
|||
endfor |
|||
else |
|||
let final_menu = [] |
|||
for i in range(len(menu)) |
|||
let item = menu[i] |
|||
if len(b:html_omni[tag][1][item]) > 0 && b:html_omni[tag][1][item][0] =~ '^\(BOOL\|'.item.'\)$' |
|||
let item = item |
|||
else |
|||
let item .= '="' |
|||
endif |
|||
let final_menu += [item] |
|||
endfor |
|||
return final_menu |
|||
|
|||
endif |
|||
return final_menu |
|||
|
|||
endif |
|||
" }}} |
|||
" Close tag {{{ |
|||
let b:unaryTagsStack = "area base br col command embed hr img input keygen link meta param source track wbr" |
|||
if context =~ '^\/' |
|||
if context =~ '^\/.' |
|||
return [] |
|||
else |
|||
let opentag = xmlcomplete#GetLastOpenTag("b:unaryTagsStack") |
|||
return [opentag.">"] |
|||
endif |
|||
endif |
|||
" }}} |
|||
" Load data {{{ |
|||
if !exists("b:html_doctype") |
|||
call htmlcomplete#CheckDoctype() |
|||
endif |
|||
if !exists("b:html_omni") |
|||
"runtime! autoload/xml/xhtml10s.vim |
|||
call htmlcomplete#LoadData() |
|||
endif |
|||
if g:aria_attributes_complete == 1 && !exists("b:aria_omni") |
|||
call htmlcomplete#LoadAria() |
|||
endif |
|||
" }}} |
|||
" Tag completion {{{ |
|||
" Deal with tag completion. |
|||
let opentag = tolower(xmlcomplete#GetLastOpenTag("b:unaryTagsStack")) |
|||
" MM: TODO: GLOT works always the same but with some weird situation it |
|||
" behaves as intended in HTML but screws in PHP |
|||
if opentag == '' || &filetype == 'php' && !has_key(b:html_omni, opentag) |
|||
" Hack for sometimes failing GetLastOpenTag. |
|||
" As far as I tested fail isn't GLOT fault but problem |
|||
" of invalid document - not properly closed tags and other mish-mash. |
|||
" Also when document is empty. Return list of *all* tags. |
|||
let tags = keys(b:html_omni) |
|||
call filter(tags, 'v:val !~ "^vimxml"') |
|||
else |
|||
if has_key(b:html_omni, opentag) |
|||
let tags = b:html_omni[opentag][0] |
|||
else |
|||
return [] |
|||
endif |
|||
endif |
|||
" }}} |
|||
|
|||
if exists("uppercase_tag") && uppercase_tag == 1 |
|||
let context = tolower(context) |
|||
endif |
|||
" Handle XML keywords: DOCTYPE |
|||
if opentag == '' |
|||
let tags = [ |
|||
\ '!DOCTYPE html>', |
|||
\ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">', |
|||
\ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">', |
|||
\ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">', |
|||
\ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN" "http://www.w3.org/TR/REC-html40/frameset.dtd">', |
|||
\ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">', |
|||
\ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">', |
|||
\ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">', |
|||
\ '!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">', |
|||
\ '!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">', |
|||
\ '!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">', |
|||
\ '!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/1999/xhtml">' |
|||
\ ] + sort(tags) |
|||
endif |
|||
|
|||
"for m in sort(tags) |
|||
for m in tags |
|||
if m =~ '^'.context |
|||
call add(res, m) |
|||
elseif m =~ context |
|||
call add(res2, m) |
|||
endif |
|||
endfor |
|||
let menu = res + res2 |
|||
if has_key(b:html_omni, 'vimxmltaginfo') |
|||
let final_menu = [] |
|||
for i in range(len(menu)) |
|||
let item = menu[i] |
|||
if has_key(b:html_omni['vimxmltaginfo'], item) |
|||
let m_menu = b:html_omni['vimxmltaginfo'][item][0] |
|||
let m_info = b:html_omni['vimxmltaginfo'][item][1] |
|||
else |
|||
let m_menu = '' |
|||
let m_info = '' |
|||
endif |
|||
if &filetype == 'html' && exists("uppercase_tag") && uppercase_tag == 1 && item !~ 'DOCTYPE' |
|||
let item = toupper(item) |
|||
endif |
|||
if item =~ 'DOCTYPE' |
|||
if item =~ 'DTD' |
|||
let abbr = 'DOCTYPE '.matchstr(item, 'DTD \zsX\?HTML .\{-}\ze\/\/') |
|||
else |
|||
let abbr = 'DOCTYPE HTML 5' |
|||
endif |
|||
else |
|||
let abbr = item |
|||
endif |
|||
let final_menu += [{'abbr':abbr, 'word':item, 'menu':m_menu, 'info':m_info}] |
|||
endfor |
|||
else |
|||
let final_menu = menu |
|||
endif |
|||
return final_menu |
|||
|
|||
" }}} |
|||
endif |
|||
endfunction |
|||
|
|||
function! htmlcomplete#LoadAria() " {{{ |
|||
runtime! autoload/xml/aria.vim |
|||
if exists("g:xmldata_aria") |
|||
\ && has_key(g:xmldata_aria, 'default_role') |
|||
\ && has_key(g:xmldata_aria, 'role_attributes') |
|||
\ && has_key(g:xmldata_aria, 'vimariaattrinfo') |
|||
\ && has_key(g:xmldata_aria, 'aria_attributes') |
|||
let b:aria_omni = g:xmldata_aria |
|||
else |
|||
let g:aria_attributes_complete = 0 |
|||
endif |
|||
endfunction |
|||
" }}} |
|||
function! htmlcomplete#LoadData() " {{{ |
|||
if !exists("b:html_omni_flavor") |
|||
if &filetype == 'html' |
|||
let b:html_omni_flavor = 'html401t' |
|||
else |
|||
let b:html_omni_flavor = 'xhtml10s' |
|||
endif |
|||
endif |
|||
" With that if we still have bloated memory but create new buffer |
|||
" variables only by linking to existing g:variable, not sourcing whole |
|||
" file. |
|||
if exists('g:xmldata_'.b:html_omni_flavor) |
|||
exe 'let b:html_omni = g:xmldata_'.b:html_omni_flavor |
|||
else |
|||
exe 'runtime! autoload/xml/'.b:html_omni_flavor.'.vim' |
|||
exe 'let b:html_omni = g:xmldata_'.b:html_omni_flavor |
|||
endif |
|||
endfunction |
|||
" }}} |
|||
function! htmlcomplete#CheckDoctype() " {{{ |
|||
if exists('b:html_omni_flavor') |
|||
let old_flavor = b:html_omni_flavor |
|||
else |
|||
let old_flavor = '' |
|||
endif |
|||
let i = 1 |
|||
while i < 10 && i < line("$") |
|||
let line = getline(i) |
|||
if line =~ '<!DOCTYPE.*\<DTD HTML 3\.2' |
|||
let b:html_omni_flavor = 'html32' |
|||
let b:html_doctype = 1 |
|||
break |
|||
elseif line =~ '<!DOCTYPE.*\<DTD HTML 4\.0 Transitional' |
|||
let b:html_omni_flavor = 'html40t' |
|||
let b:html_doctype = 1 |
|||
break |
|||
elseif line =~ '<!DOCTYPE.*\<DTD HTML 4\.0 Frameset' |
|||
let b:html_omni_flavor = 'html40f' |
|||
let b:html_doctype = 1 |
|||
break |
|||
elseif line =~ '<!DOCTYPE.*\<DTD HTML 4\.0' |
|||
let b:html_omni_flavor = 'html40s' |
|||
let b:html_doctype = 1 |
|||
break |
|||
elseif line =~ '<!DOCTYPE.*\<DTD HTML 4\.01 Transitional' |
|||
let b:html_omni_flavor = 'html401t' |
|||
let b:html_doctype = 1 |
|||
break |
|||
elseif line =~ '<!DOCTYPE.*\<DTD HTML 4\.01 Frameset' |
|||
let b:html_omni_flavor = 'html401f' |
|||
let b:html_doctype = 1 |
|||
break |
|||
elseif line =~ '<!DOCTYPE.*\<DTD HTML 4\.01' |
|||
let b:html_omni_flavor = 'html401s' |
|||
let b:html_doctype = 1 |
|||
break |
|||
elseif line =~ '<!DOCTYPE.*\<DTD XHTML 1\.0 Transitional' |
|||
let b:html_omni_flavor = 'xhtml10t' |
|||
let b:html_doctype = 1 |
|||
break |
|||
elseif line =~ '<!DOCTYPE.*\<DTD XHTML 1\.0 Frameset' |
|||
let b:html_omni_flavor = 'xhtml10f' |
|||
let b:html_doctype = 1 |
|||
break |
|||
elseif line =~ '<!DOCTYPE.*\<DTD XHTML 1\.0 Strict' |
|||
let b:html_omni_flavor = 'xhtml10s' |
|||
let b:html_doctype = 1 |
|||
break |
|||
elseif line =~ '<!DOCTYPE.*\<DTD XHTML 1\.1' |
|||
let b:html_omni_flavor = 'xhtml11' |
|||
let b:html_doctype = 1 |
|||
break |
|||
elseif line =~ '<!DOCTYPE html' |
|||
let b:html_omni_flavor = 'html5' |
|||
let b:html_doctype = 1 |
|||
break |
|||
endif |
|||
let i += 1 |
|||
endwhile |
|||
if !exists("b:html_doctype") |
|||
return |
|||
else |
|||
" Tie g:xmldata with b:html_omni this way we need to sourca data file only |
|||
" once, not every time per buffer. |
|||
if old_flavor == b:html_omni_flavor |
|||
return |
|||
else |
|||
if exists('g:xmldata_'.b:html_omni_flavor) |
|||
exe 'let b:html_omni = g:xmldata_'.b:html_omni_flavor |
|||
else |
|||
exe 'runtime! autoload/xml/'.b:html_omni_flavor.'.vim' |
|||
exe 'let b:html_omni = g:xmldata_'.b:html_omni_flavor |
|||
endif |
|||
return |
|||
endif |
|||
endif |
|||
endfunction |
|||
" }}} |
|||
" vim:set foldmethod=marker: |
@ -1,232 +0,0 @@ |
|||
" Vim completion for WAI-ARIA data file |
|||
" Language: HTML + WAI-ARIA |
|||
" Maintainer: othree <othree@gmail.com> |
|||
" Last Change: 2010 Sep 09 |
|||
|
|||
" WAI_ARIA: {{{ |
|||
" Ref: http://www.w3.org/TR/wai-aria/ |
|||
" Version: Draft 15 December 2009 |
|||
|
|||
let abstract_role = {} |
|||
let role_attributes = {} |
|||
let default_role = {} |
|||
|
|||
" Ref: http://www.w3.org/TR/wai-aria/roles |
|||
" Version: Draft 15 December 2009 |
|||
let widget_role = ['alert', 'alertdialog', 'button', 'checkbox', 'combobox', 'dialog', 'gridcell', 'link', 'log', 'marquee', 'menuitem', 'menuitemcheckbox', 'menuitemradio', 'option', 'progressbar', 'radio', 'radiogroup', 'scrollbar', 'slider', 'spinbutton', 'status', 'tab', 'tabpanel', 'textbox', 'timer', 'tooltip', 'treeitem', 'combobox', 'grid', 'listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'] |
|||
let document_structure = ['article', 'columnheader', 'definition', 'directory', 'document', 'group', 'heading', 'img', 'list', 'listitem', 'math', 'note', 'presentation', 'region', 'row', 'rowheader', 'separator'] |
|||
let landmark_role = ['application', 'banner', 'complementary', 'contentinfo', 'form', 'main', 'navigation', 'search'] |
|||
let role = extend(widget_role, document_structure) |
|||
let role = extend(role, landmark_role) |
|||
|
|||
" http://www.w3.org/TR/wai-aria/states_and_properties#state_prop_taxonomy |
|||
"let global_states_and_properties = {'aria-atomic': ['true', 'false'], 'aria-busy': ['true', 'false'], 'aria-controls': [], 'aria-describedby': [], 'aria-disabled': ['true', 'false'], 'aria-dropeffect': ['copy', 'move', 'link', 'execute', 'popup', 'none'], 'aria-flowto': [], 'aria-grabbed': ['true', 'false', 'undefined'], 'aria-haspopup': ['true', 'false'], 'aria-hidden': ['true', 'false'], 'aria-invalid': ['grammar', 'spelling', 'true', 'false'], 'aria-label': [], 'aria-labelledby': [], 'aria-live': ['off', 'polite', 'assertive'], 'aria-owns': [], 'aria-relevant': ['additions', 'removals', 'text', 'all']} |
|||
let widget_attributes = {'aria-autocomplete': ['inline', 'list', 'both', 'none'], 'aria-checked': ['true', 'false', 'mixed', 'undefined'], 'aria-disabled': ['true', 'false'], 'aria-expanded': ['true', 'false', 'undefined'], 'aria-haspopup': ['true', 'false'], 'aria-hidden': ['true', 'false'], 'aria-invalid': ['grammar', 'spelling', 'true', 'false'], 'aria-label': [], 'aria-level': [], 'aria-multiline': ['true', 'false'], 'aria-multiselectable': ['true', 'false'], 'aria-orientation': ['horizontal', 'vertical'], 'aria-pressed': ['true', 'false', 'mixed', 'undefined'], 'aria-readonly': ['true', 'false'], 'aria-required': ['true', 'false'], 'aria-selected': ['true', 'false', 'undefined'], 'aria-sort': ['ascending', 'descending', 'none', 'other'], 'aria-valuemax': [], 'aria-valuemin': [], 'aria-valuenow': [], 'aria-valuetext': []} |
|||
let live_region_attributes = {'aria-atomic': ['true', 'false'], 'aria-busy': ['true', 'false'], 'aria-live': ['off', 'polite', 'assertive'], 'aria-relevant': ['additions', 'removals', 'text', 'all', 'additions text']} |
|||
let drag_and_drop_attributes = {'aria-dropeffect': ['copy', 'move', 'link', 'execute', 'popup', 'none'], 'aria-grabbed': ['true', 'false', 'undefined']} |
|||
let relationship_attributes = {'aria-activedescendant': [], 'aria-controls': [], 'aria-describedby': [], 'aria-flowto': [], 'aria-labelledby': [], 'aria-owns': [], 'aria-posinset': [], 'aria-setsize': []} |
|||
let aria_attributes = widget_attributes |
|||
let aria_attributes = extend(aria_attributes, live_region_attributes) |
|||
let aria_attributes = extend(aria_attributes, drag_and_drop_attributes) |
|||
let aria_attributes = extend(aria_attributes, relationship_attributes) |
|||
|
|||
" Abstract Roles |
|||
let abstract_role['roletype'] = ['aria-atomic', 'aria-busy', 'aria-controls', 'aria-describedby', 'aria-disabled', 'aria-dropeffect', 'aria-flowto', 'aria-grabbed', 'aria-haspopup', 'aria-hidden', 'aria-invalid', 'aria-label', 'aria-labelledby', 'aria-live', 'aria-owns', 'aria-relevant'] |
|||
let role_attributes['default'] = abstract_role['roletype'] |
|||
let abstract_role['structure'] = abstract_role['roletype'] |
|||
let abstract_role['widget'] = abstract_role['roletype'] |
|||
let abstract_role['window'] = abstract_role['roletype'] + ['aria-expanded'] |
|||
let abstract_role['composite'] = abstract_role['widget'] + ['aria-activedescendant'] |
|||
let abstract_role['input'] = abstract_role['widget'] |
|||
let abstract_role['section'] = abstract_role['structure'] + ['aria-expanded'] |
|||
let abstract_role['sectionhead'] = abstract_role['structure'] + ['aria-expanded'] |
|||
|
|||
let role_attributes['group'] = abstract_role['section'] |
|||
let abstract_role['select'] = abstract_role['composite'] + role_attributes['group'] + abstract_role['input'] |
|||
|
|||
let abstract_role['range'] = abstract_role['input'] + ['aria-valuemax', 'aria-valuemin', 'aria-valuenow', 'aria-valuetext'] |
|||
|
|||
let role_attributes['region'] = abstract_role['section'] |
|||
let abstract_role['landmark'] = role_attributes['region'] |
|||
|
|||
" Widget Roles |
|||
let role_attributes['list'] = role_attributes['region'] |
|||
let role_attributes['listitem'] = abstract_role['section'] |
|||
|
|||
let role_attributes['dialog'] = abstract_role['window'] |
|||
let role_attributes['menuitem'] = abstract_role['input'] |
|||
let role_attributes['checkbox'] = abstract_role['input'] + ['aria-checked'] |
|||
let role_attributes['menuitemcheckbox'] = role_attributes['menuitem'] + role_attributes['checkbox'] |
|||
let role_attributes['option'] = abstract_role['input'] + ['aria-checked', 'aria-posinset', 'aria-selected', 'aria-setsize'] |
|||
let role_attributes['radio'] = role_attributes['checkbox'] + role_attributes['option'] |
|||
|
|||
let role_attributes['directory'] = role_attributes['list'] |
|||
|
|||
let role_attributes['alert'] = role_attributes['region'] |
|||
let role_attributes['alertdialog'] = role_attributes['alert'] + role_attributes['dialog'] |
|||
let role_attributes['button'] = role_attributes['region'] + role_attributes['menuitemcheckbox'] |
|||
let role_attributes['combobox'] = abstract_role['select'] + ['aria-expanded', 'aria-required'] |
|||
let role_attributes['gridcell'] = abstract_role['section'] + abstract_role['widget'] |
|||
let role_attributes['link'] = abstract_role['widget'] |
|||
let role_attributes['log'] = role_attributes['region'] |
|||
let role_attributes['marquee'] = role_attributes['region'] |
|||
let role_attributes['menuitemradio'] = role_attributes['menuitemcheckbox'] + role_attributes['radio'] |
|||
let role_attributes['progressbar'] = abstract_role['widget'] + ['aria-valuemax', 'aria-valuemin', 'aria-valuenow', 'aria-valuetext'] |
|||
let role_attributes['radiogroup'] = abstract_role['select'] + ['aria-required'] |
|||
let role_attributes['scrollbar'] = abstract_role['range'] + ['aria-controls', 'aria-orientation', 'aria-valuemax', 'aria-valuemin', 'aria-valuenow'] |
|||
let role_attributes['slider'] = abstract_role['range'] + ['aria-valuemax', 'aria-valuemin', 'aria-valuenow'] |
|||
let role_attributes['spinbutton'] = abstract_role['composite'] + abstract_role['range'] + ['aria-required'] |
|||
let role_attributes['status'] = abstract_role['composite'] + role_attributes['region'] |
|||
let role_attributes['tab'] = abstract_role['sectionhead'] + abstract_role['widget'] + ['aria-selected'] |
|||
let role_attributes['tabpanel'] = role_attributes['region'] |
|||
let role_attributes['textbox'] = abstract_role['input'] + ['aria-autocomplete', 'aria-multiline', 'aria-readonly', 'aria-required'] |
|||
let role_attributes['timer'] = role_attributes['status'] |
|||
let role_attributes['tooltip'] = abstract_role['section'] |
|||
let role_attributes['treeitem'] = role_attributes['listitem'] + role_attributes['option'] |
|||
|
|||
let role_attributes['grid'] = abstract_role['composite'] + role_attributes['region'] + ['aria-level', 'aria-multiselectable', 'aria-readonly'] |
|||
let role_attributes['listbox'] = role_attributes['list'] + abstract_role['select'] + ['aria-multiselectable', 'aria-required'] |
|||
let role_attributes['menu'] = role_attributes['list'] + abstract_role['select'] |
|||
let role_attributes['menubar'] = role_attributes['menu'] |
|||
let role_attributes['tablist'] = abstract_role['composite'] + role_attributes['directory'] |
|||
let role_attributes['toolbar'] = role_attributes['group'] |
|||
let role_attributes['tree'] = abstract_role['select'] + ['aria-multiselectable', 'aria-required'] |
|||
let role_attributes['treegrid'] = role_attributes['grid'] + role_attributes['tree'] |
|||
|
|||
" Document Structure |
|||
let role_attributes['document'] = abstract_role['structure'] + ['aria-expanded'] |
|||
|
|||
let role_attributes['article'] = role_attributes['document'] + role_attributes['region'] |
|||
let role_attributes['columnheader'] = role_attributes['gridcell'] + abstract_role['sectionhead'] + ['aria-sort'] |
|||
let role_attributes['definition'] = abstract_role['section'] |
|||
let role_attributes['heading'] = abstract_role['sectionhead'] + ['aria-level'] |
|||
let role_attributes['img'] = abstract_role['section'] |
|||
let role_attributes['math'] = abstract_role['section'] |
|||
let role_attributes['note'] = abstract_role['section'] |
|||
let role_attributes['presentation'] = abstract_role['structure'] |
|||
let role_attributes['row'] = role_attributes['group'] + ['aria-level', 'aria-selected'] |
|||
let role_attributes['rowheader'] = role_attributes['gridcell'] + abstract_role['sectionhead'] |
|||
let role_attributes['separator'] = abstract_role['structure'] + ['aria-expanded'] |
|||
|
|||
" Landmark Roles |
|||
let role_attributes['application'] = abstract_role['landmark'] |
|||
let role_attributes['banner'] = abstract_role['landmark'] |
|||
let role_attributes['complementary'] = abstract_role['landmark'] |
|||
let role_attributes['contentinfo'] = abstract_role['landmark'] |
|||
let role_attributes['form'] = abstract_role['landmark'] |
|||
let role_attributes['main'] = abstract_role['landmark'] |
|||
let role_attributes['navigation'] = abstract_role['landmark'] |
|||
let role_attributes['search'] = abstract_role['landmark'] |
|||
|
|||
" http://www.w3.org/TR/wai-aria/states_and_properties#state_prop_def |
|||
let aria_attributes_value = { |
|||
\ 'aria-autocomplete': ['ID', ''], |
|||
\ 'aria-checked': ['Token', ''], |
|||
\ 'aria-disabled': ['true/false', ''], |
|||
\ 'aria-expanded': ['Token', ''], |
|||
\ 'aria-haspopup': ['true/false', ''], |
|||
\ 'aria-hidden': ['true/false', ''], |
|||
\ 'aria-invalid': ['Token', ''], |
|||
\ 'aria-label': ['String', ''], |
|||
\ 'aria-level': ['Int', ''], |
|||
\ 'aria-multiline': ['true/false', ''], |
|||
\ 'aria-multiselectable': ['true/false', ''], |
|||
\ 'aria-orientation': ['Token', ''], |
|||
\ 'aria-pressed': ['Token', ''], |
|||
\ 'aria-readonly': ['true/false', ''], |
|||
\ 'aria-required': ['true/false', ''], |
|||
\ 'aria-selected': ['Token', ''], |
|||
\ 'aria-sort': ['Token', ''], |
|||
\ 'aria-valuemax': ['Number', ''], |
|||
\ 'aria-valuemin': ['Number', ''], |
|||
\ 'aria-valuenow': ['Number', ''], |
|||
\ 'aria-valuetext': ['String', ''], |
|||
\ 'aria-atomic': ['true/false', ''], |
|||
\ 'aria-busy': ['true/false', ''], |
|||
\ 'aria-live': ['Token', ''], |
|||
\ 'aria-relevant': ['*Token', ''], |
|||
\ 'aria-dropeffect': ['*Token', ''], |
|||
\ 'aria-grabbed': ['Token', ''], |
|||
\ 'aria-activedescendant': ['ID', ''], |
|||
\ 'aria-controls': ['*ID', ''], |
|||
\ 'aria-describedby': ['*ID', ''], |
|||
\ 'aria-flowto': ['*ID', ''], |
|||
\ 'aria-labelledby': ['*ID', ''], |
|||
\ 'aria-owns': ['*ID', ''], |
|||
\ 'aria-posinset': ['Int', ''], |
|||
\ 'aria-setsize': ['Int', ''] |
|||
\ } |
|||
|
|||
" http://dev.w3.org/html5/spec/content-models.html#annotations-for-assistive-technology-products-aria |
|||
let default_role = { |
|||
\ 'a': 'link', |
|||
\ 'area': 'link', |
|||
\ 'body': 'document', |
|||
\ 'button': 'button', |
|||
\ 'datalist': 'listbox', |
|||
\ 'h1': 'heading', |
|||
\ 'h2': 'heading', |
|||
\ 'h3': 'heading', |
|||
\ 'h4': 'heading', |
|||
\ 'h5': 'heading', |
|||
\ 'h6': 'heading', |
|||
\ 'hgroup': 'heading', |
|||
\ 'hr': 'separator', |
|||
\ 'img[alt=]': 'presentation', |
|||
\ 'input[type=button]': 'button', |
|||
\ 'input[type=email]': 'textbox', |
|||
\ 'input[type=image]': 'button', |
|||
\ 'input[type=number]': 'spinbutton', |
|||
\ 'input[type=password]': 'textbox', |
|||
\ 'input[type=range]': 'slider', |
|||
\ 'input[type=reset]': 'button', |
|||
\ 'input[type=search]': 'textbox', |
|||
\ 'input[type=submit]': 'button', |
|||
\ 'input[type=tel]': 'textbox', |
|||
\ 'input[type=text]': 'textbox', |
|||
\ 'input[list]': 'combobox', |
|||
\ 'input[type=url]': 'textbox', |
|||
\ 'input': 'textbox', |
|||
\ 'keygen': 'default', |
|||
\ 'label': 'default', |
|||
\ 'menu[type=list]': 'menu', |
|||
\ 'menu[type=toolbar]': 'toolbar', |
|||
\ 'menu': 'default', |
|||
\ 'link': 'link', |
|||
\ 'nav': 'navigation', |
|||
\ 'optgroup': 'default', |
|||
\ 'option': 'option', |
|||
\ 'progress': 'progressbar', |
|||
\ 'select': 'listbox', |
|||
\ 'summary': 'heading', |
|||
\ 'tbody': 'rowgroup', |
|||
\ 'td': 'gridcell', |
|||
\ 'textarea': 'textbox', |
|||
\ 'tfoot': 'rowgroup', |
|||
\ 'th[scope=col]': 'columnheader', |
|||
\ 'th[scope=row]': 'rowheader', |
|||
\ 'tr': 'row', |
|||
\ 'address': 'default', |
|||
\ 'article': 'article', |
|||
\ 'aside': 'note', |
|||
\ 'footer': 'default', |
|||
\ 'header': 'default', |
|||
\ 'details': 'group', |
|||
\ 'img': 'img', |
|||
\ 'input[type=checkbox]': 'checkbox', |
|||
\ 'input[type=radio]': 'radio', |
|||
\ 'li': 'listitem', |
|||
\ 'ol': 'list', |
|||
\ 'output': 'status', |
|||
\ 'section': 'region', |
|||
\ 'table': 'grid', |
|||
\ 'ul': 'list', |
|||
\ } |
|||
" }}} |
|||
|
|||
let g:xmldata_aria = { |
|||
\ 'aria_attributes': aria_attributes, |
|||
\ 'role_attributes': role_attributes, |
|||
\ 'default_role': default_role, |
|||
\ 'vimariaattrinfo': aria_attributes_value |
|||
\ } |
@ -1,791 +0,0 @@ |
|||
" Vim completion for HTML5 data file |
|||
" Language: HTML5 |
|||
" Maintainer: othree <othree@gmail.com> |
|||
" Last Change: 2011 Apr 9 |
|||
|
|||
|
|||
" Lang Tag: {{{ |
|||
" Ref: http://www.iana.org/assignments/language-subtag-registry |
|||
" Version: 2010/09/07 |
|||
" Description: only get two-letter language tag |
|||
let lang_tag = [ |
|||
\ 'aa', 'ab', 'ae', 'af', 'ak', 'am', 'an', 'ar', 'as', 'av', 'ay', 'az', 'ba', 'be', 'bg', 'bh', 'bi', 'bm', |
|||
\ 'bn', 'bo', 'br', 'bs', 'ca', 'ce', 'ch', 'co', 'cr', 'cs', 'cu', 'cv', 'cy', 'da', 'de', 'dv', 'dz', 'ee', |
|||
\ 'el', 'en', 'eo', 'es', 'et', 'eu', 'fa', 'ff', 'fi', 'fj', 'fo', 'fr', 'fy', 'ga', 'gd', 'gl', 'gn', 'gu', |
|||
\ 'gv', 'ha', 'he', 'hi', 'ho', 'hr', 'ht', 'hu', 'hy', 'hz', 'ia', 'id', 'ie', 'ig', 'ii', 'ik', 'in', 'io', |
|||
\ 'is', 'it', 'iu', 'iw', 'ja', 'ji', 'jv', 'jw', 'ka', 'kg', 'ki', 'kj', 'kk', 'kl', 'km', 'kn', 'ko', 'kr', |
|||
\ 'ks', 'ku', 'kv', 'kw', 'ky', 'la', 'lb', 'lg', 'li', 'ln', 'lo', 'lt', 'lu', 'lv', 'mg', 'mh', 'mi', 'mk', |
|||
\ 'ml', 'mn', 'mo', 'mr', 'ms', 'mt', 'my', 'na', 'nb', 'nd', 'ne', 'ng', 'nl', 'nn', 'no', 'nr', 'nv', 'ny', |
|||
\ 'oc', 'oj', 'om', 'or', 'os', 'pa', 'pi', 'pl', 'ps', 'pt', 'qu', 'rm', 'rn', 'ro', 'ru', 'rw', 'sa', 'sc', |
|||
\ 'sd', 'se', 'sg', 'sh', 'si', 'sk', 'sl', 'sm', 'sn', 'so', 'sq', 'sr', 'ss', 'st', 'su', 'sv', 'sw', 'ta', |
|||
\ 'te', 'tg', 'th', 'ti', 'tk', 'tl', 'tn', 'to', 'tr', 'ts', 'tt', 'tw', 'ty', 'ug', 'uk', 'ur', 'uz', 've', |
|||
\ 'vi', 'vo', 'wa', 'wo', 'xh', 'yi', 'yo', 'za', 'zh', 'zu', 'zh-CN', 'zh-TW'] |
|||
" }}} |
|||
|
|||
" Charset: {{{ |
|||
" Ref: http://www.iana.org/assignments/character-sets |
|||
" Version: 2010/09/07 |
|||
let charset = [ |
|||
\ 'ANSI_X3.4-1968', 'ISO_8859-1:1987', 'ISO_8859-2:1987', 'ISO_8859-3:1988', 'ISO_8859-4:1988', 'ISO_8859-5:1988', |
|||
\ 'ISO_8859-6:1987', 'ISO_8859-7:1987', 'ISO_8859-8:1988', 'ISO_8859-9:1989', 'ISO-8859-10', 'ISO_6937-2-add', 'JIS_X0201', |
|||
\ 'JIS_Encoding', 'Shift_JIS', 'Extended_UNIX_Code_Packed_Format_for_Japanese', 'Extended_UNIX_Code_Fixed_Width_for_Japanese', |
|||
\ 'BS_4730', 'SEN_850200_C', 'IT', 'ES', 'DIN_66003', 'NS_4551-1', 'NF_Z_62-010', 'ISO-10646-UTF-1', 'ISO_646.basic:1983', |
|||
\ 'INVARIANT', 'ISO_646.irv:1983', 'NATS-SEFI', 'NATS-SEFI-ADD', 'NATS-DANO', 'NATS-DANO-ADD', 'SEN_850200_B', 'KS_C_5601-1987', |
|||
\ 'ISO-2022-KR', 'EUC-KR', 'ISO-2022-JP', 'ISO-2022-JP-2', 'JIS_C6220-1969-jp', 'JIS_C6220-1969-ro', 'PT', 'greek7-old', |
|||
\ 'latin-greek', 'NF_Z_62-010_(1973)', 'Latin-greek-1', 'ISO_5427', 'JIS_C6226-1978', 'BS_viewdata', 'INIS', 'INIS-8', |
|||
\ 'INIS-cyrillic', 'ISO_5427:1981', 'ISO_5428:1980', 'GB_1988-80', 'GB_2312-80', 'NS_4551-2', 'videotex-suppl', 'PT2', |
|||
\ 'ES2', 'MSZ_7795.3', 'JIS_C6226-1983', 'greek7', 'ASMO_449', 'iso-ir-90', 'JIS_C6229-1984-a', 'JIS_C6229-1984-b', |
|||
\ 'JIS_C6229-1984-b-add', 'JIS_C6229-1984-hand', 'JIS_C6229-1984-hand-add', 'JIS_C6229-1984-kana', 'ISO_2033-1983', |
|||
\ 'ANSI_X3.110-1983', 'T.61-7bit', 'T.61-8bit', 'ECMA-cyrillic', 'CSA_Z243.4-1985-1', 'CSA_Z243.4-1985-2', 'CSA_Z243.4-1985-gr', |
|||
\ 'ISO_8859-6-E', 'ISO_8859-6-I', 'T.101-G2', 'ISO_8859-8-E', 'ISO_8859-8-I', 'CSN_369103', 'JUS_I.B1.002', 'IEC_P27-1', |
|||
\ 'JUS_I.B1.003-serb', 'JUS_I.B1.003-mac', 'greek-ccitt', 'NC_NC00-10:81', 'ISO_6937-2-25', 'GOST_19768-74', 'ISO_8859-supp', |
|||
\ 'ISO_10367-box', 'latin-lap', 'JIS_X0212-1990', 'DS_2089', 'us-dk', 'dk-us', 'KSC5636', 'UNICODE-1-1-UTF-7', 'ISO-2022-CN', |
|||
\ 'ISO-2022-CN-EXT', 'UTF-8', 'ISO-8859-13', 'ISO-8859-14', 'ISO-8859-15', 'ISO-8859-16', 'GBK', 'GB18030', 'OSD_EBCDIC_DF04_15', |
|||
\ 'OSD_EBCDIC_DF03_IRV', 'OSD_EBCDIC_DF04_1', 'ISO-11548-1', 'KZ-1048', 'ISO-10646-UCS-2', 'ISO-10646-UCS-4', 'ISO-10646-UCS-Basic', |
|||
\ 'ISO-10646-Unicode-Latin1', 'ISO-10646-J-1', 'ISO-Unicode-IBM-1261', 'ISO-Unicode-IBM-1268', 'ISO-Unicode-IBM-1276', |
|||
\ 'ISO-Unicode-IBM-1264', 'ISO-Unicode-IBM-1265', 'UNICODE-1-1', 'SCSU', 'UTF-7', 'UTF-16BE', 'UTF-16LE', 'UTF-16', 'CESU-8', |
|||
\ 'UTF-32', 'UTF-32BE', 'UTF-32LE', 'BOCU-1', 'ISO-8859-1-Windows-3.0-Latin-1', 'ISO-8859-1-Windows-3.1-Latin-1', |
|||
\ 'ISO-8859-2-Windows-Latin-2', 'ISO-8859-9-Windows-Latin-5', 'hp-roman8', 'Adobe-Standard-Encoding', 'Ventura-US', |
|||
\ 'Ventura-International', 'DEC-MCS', 'IBM850', 'PC8-Danish-Norwegian', 'IBM862', 'PC8-Turkish', 'IBM-Symbols', 'IBM-Thai', |
|||
\ 'HP-Legal', 'HP-Pi-font', 'HP-Math8', 'Adobe-Symbol-Encoding', 'HP-DeskTop', 'Ventura-Math', 'Microsoft-Publishing', |
|||
\ 'Windows-31J', 'GB2312', 'Big5', 'macintosh', 'IBM037', 'IBM038', 'IBM273', 'IBM274', 'IBM275', 'IBM277', 'IBM278', |
|||
\ 'IBM280', 'IBM281', 'IBM284', 'IBM285', 'IBM290', 'IBM297', 'IBM420', 'IBM423', 'IBM424', 'IBM437', 'IBM500', 'IBM851', |
|||
\ 'IBM852', 'IBM855', 'IBM857', 'IBM860', 'IBM861', 'IBM863', 'IBM864', 'IBM865', 'IBM868', 'IBM869', 'IBM870', 'IBM871', |
|||
\ 'IBM880', 'IBM891', 'IBM903', 'IBM904', 'IBM905', 'IBM918', 'IBM1026', 'EBCDIC-AT-DE', 'EBCDIC-AT-DE-A', 'EBCDIC-CA-FR', |
|||
\ 'EBCDIC-DK-NO', 'EBCDIC-DK-NO-A', 'EBCDIC-FI-SE', 'EBCDIC-FI-SE-A', 'EBCDIC-FR', 'EBCDIC-IT', 'EBCDIC-PT', 'EBCDIC-ES', |
|||
\ 'EBCDIC-ES-A', 'EBCDIC-ES-S', 'EBCDIC-UK', 'EBCDIC-US', 'UNKNOWN-8BIT', 'MNEMONIC', 'MNEM', 'VISCII', 'VIQR', 'KOI8-R', |
|||
\ 'HZ-GB-2312', 'IBM866', 'IBM775', 'KOI8-U', 'IBM00858', 'IBM00924', 'IBM01140', 'IBM01141', 'IBM01142', 'IBM01143', |
|||
\ 'IBM01144', 'IBM01145', 'IBM01146', 'IBM01147', 'IBM01148', 'IBM01149', 'Big5-HKSCS', 'IBM1047', 'PTCP154', 'Amiga-1251', |
|||
\ 'KOI7-switched', 'BRF', 'TSCII', 'windows-1250', 'windows-1251', 'windows-1252', 'windows-1253', 'windows-1254', 'windows-1255', |
|||
\ 'windows-1256', 'windows-1257', 'windows-1258', 'TIS-620', ] |
|||
" }}} |
|||
|
|||
" Attributes_and_Settings: {{{ |
|||
let core_attributes = {'accesskey': [], 'class': [], 'contenteditable': ['true', 'false', ''], 'contextmenu': [], 'dir': ['ltr', 'rtl'], 'draggable': ['true', 'false'], 'hidden': ['hidden', ''], 'id': [], 'lang': lang_tag, 'spellcheck': ['true', 'false', ''], 'style': [], 'tabindex': [], 'title': []} |
|||
let xml_attributes = {'xml:lang': lang_tag, 'xml:space': ['preserve'], 'xml:base': [], 'xmlns': ['http://www.w3.org/1999/xhtml', 'http://www.w3.org/1998/Math/MathML', 'http://www.w3.org/2000/svg', 'http://www.w3.org/1999/xlink']} |
|||
|
|||
let body_attributes = {} |
|||
let global_attributes = extend(core_attributes, xml_attributes) |
|||
if !exists('g:html5_event_handler_attributes_complete') |
|||
let g:html5_event_handler_attributes_complete = 1 |
|||
endif |
|||
|
|||
" http://dev.w3.org/html5/spec/Overview.html#attributes-1 |
|||
let attributes_value = { |
|||
\ 'accept': ['MIME', ''], |
|||
\ 'accept-charset': ['Charset', ''], |
|||
\ 'accesskey': ['Character', ''], |
|||
\ 'action': ['URL', ''], |
|||
\ 'alt': ['Text', ''], |
|||
\ 'async': ['Bool', ''], |
|||
\ 'autocomplete': ['on/off', ''], |
|||
\ 'autofocus': ['Bool', ''], |
|||
\ 'autoplay': ['Bool', ''], |
|||
\ 'border': ['1', ''], |
|||
\ 'challenge': ['Text', ''], |
|||
\ 'charset': ['Charset', ''], |
|||
\ 'checked': ['Bool', ''], |
|||
\ 'cite': ['URL', ''], |
|||
\ 'class': ['*Token', ''], |
|||
\ 'cols': ['Int', ''], |
|||
\ 'colspan': ['Int', ''], |
|||
\ 'content': ['Text', ''], |
|||
\ 'contenteditable': ['true/false', ''], |
|||
\ 'contextmenu': ['ID', ''], |
|||
\ 'controls': ['Bool', ''], |
|||
\ 'coords': ['*Int', ''], |
|||
\ 'data': ['URL', ''], |
|||
\ 'datetime': ['Datetime', ''], |
|||
\ 'defer': ['Bool', ''], |
|||
\ 'dir': ['ltr/rtl', ''], |
|||
\ 'disabled': ['Bool', ''], |
|||
\ 'draggable': ['true/false', ''], |
|||
\ 'enctype': ['Token', ''], |
|||
\ 'for': ['ID', ''], |
|||
\ 'form': ['ID', ''], |
|||
\ 'formaction': ['URL', ''], |
|||
\ 'formenctype': ['Token', ''], |
|||
\ 'formmethod': ['HTTP Method', ''], |
|||
\ 'formnovalidate': ['Bool', ''], |
|||
\ 'formtarget': ['Name', ''], |
|||
\ 'headers': ['*ID', ''], |
|||
\ 'height': ['Int', ''], |
|||
\ 'hidden': ['Bool', ''], |
|||
\ 'high': ['Number', ''], |
|||
\ 'href': ['URL', ''], |
|||
\ 'hreflang': ['Lang Tag', ''], |
|||
\ 'http-equiv': ['Text', ''], |
|||
\ 'icon': ['URL', ''], |
|||
\ 'id': ['Text', ''], |
|||
\ 'ismap': ['Bool', ''], |
|||
\ 'keytype': ['Text', ''], |
|||
\ 'label': ['Text', ''], |
|||
\ 'lang': ['Lang Tag', ''], |
|||
\ 'list': ['ID', ''], |
|||
\ 'loop': ['Bool', ''], |
|||
\ 'low': ['Number', ''], |
|||
\ 'manifest': ['URL', ''], |
|||
\ 'max': ['Number', ''], |
|||
\ 'maxlength': ['Int', ''], |
|||
\ 'media': ['Text', ''], |
|||
\ 'method': ['HTTP Method', ''], |
|||
\ 'min': ['Number', ''], |
|||
\ 'multiple': ['Bool', ''], |
|||
\ 'name': ['Text', ''], |
|||
\ 'novalidate': ['Bool', ''], |
|||
\ 'open': ['Bool', ''], |
|||
\ 'optimum': ['Number', ''], |
|||
\ 'pattern': ['Pattern', ''], |
|||
\ 'placeholder': ['Text', ''], |
|||
\ 'poster': ['URL', ''], |
|||
\ 'preload': ['Token', ''], |
|||
\ 'pubdate': ['Bool', ''], |
|||
\ 'radiogroup': ['Text', ''], |
|||
\ 'readonly': ['Bool', ''], |
|||
\ 'rel': ['*Token', ''], |
|||
\ 'required': ['Bool', ''], |
|||
\ 'reversed': ['Bool', ''], |
|||
\ 'rows': ['Int', ''], |
|||
\ 'rowspan': ['Int', ''], |
|||
\ 'sandbox': ['*Token', ''], |
|||
\ 'spellcheck': ['true/false', ''], |
|||
\ 'scope': ['Token', ''], |
|||
\ 'scoped': ['Bool', ''], |
|||
\ 'seamless': ['Bool', ''], |
|||
\ 'selected': ['Bool', ''], |
|||
\ 'shape': ['Token', ''], |
|||
\ 'size': ['Int', ''], |
|||
\ 'sizes': ['*Token', ''], |
|||
\ 'span': ['Int', ''], |
|||
\ 'src': ['Int', ''], |
|||
\ 'srcdoc': ['Document', ''], |
|||
\ 'start': ['Int', ''], |
|||
\ 'step': ['Int', ''], |
|||
\ 'style': ['Style', ''], |
|||
\ 'summary': ['Text', ''], |
|||
\ 'tabindex': ['Int', ''], |
|||
\ 'target': ['Name', ''], |
|||
\ 'title': ['Text', ''], |
|||
\ 'type': ['Token', ''], |
|||
\ 'usemap': ['Name', ''], |
|||
\ 'value': ['Text', ''], |
|||
\ 'width': ['Int', ''], |
|||
\ 'wrap': ['soft/hard', ''], |
|||
\ 'xml:lang': ['Lang tag', ''], |
|||
\ 'xml:base': ['*URI', ''], |
|||
\ 'xml:space': ['preserve', ''], |
|||
\ 'xmlns': ['URI', ''], |
|||
\ 'version': ['HTML+RDFa 1.1', ''], |
|||
\ 'role': ['*Token', ''] |
|||
\ } |
|||
|
|||
if g:html5_event_handler_attributes_complete == 1 |
|||
let event_handler_attributes = {'onabort': [], 'onblur': [], 'oncanplay': [], 'oncanplaythrough': [], 'onchange': [], 'onclick': [], 'oncontextmenu': [], 'ondblclick': [], 'ondrag': [], 'ondragend': [], 'ondragenter': [], 'ondragleave': [], 'ondragover': [], 'ondragstart': [], 'ondrop': [], 'ondurationchange': [], 'onemptied': [], 'onended': [], 'onerror': [], 'onfocus': [], 'onformchange': [], 'onforminput': [], 'oninput': [], 'oninvalid': [], 'onkeydown': [], 'onkeypress': [], 'onkeyup': [], 'onload': [], 'onloadeddata': [], 'onloadedmetadata': [], 'onloadstart': [], 'onmousedown': [], 'onmousemove': [], 'onmouseout': [], 'onmouseover': [], 'onmouseup': [], 'onmousewheel': [], 'onpause': [], 'onplay': [], 'onplaying': [], 'onprogress': [], 'onratechange': [], 'onreadystatechange': [], 'onscroll': [], 'onseeked': [], 'onseeking': [], 'onselect': [], 'onshow': [], 'onstalled': [], 'onsubmit': [], 'onsuspend': [], 'ontimeupdate': [], 'onvolumechange': [], 'onwaiting': []} |
|||
let global_attributes = extend(global_attributes, event_handler_attributes) |
|||
|
|||
let body_attributes = {'onafterprint': [], 'onbeforeprint': [], 'onbeforeunload': [], 'onblur': [], 'onerror': [], 'onfocus': [], 'onhashchange': [], 'onload': [], 'onmessage': [], 'onoffline': [], 'ononline': [], 'onpopstate': [], 'onredo': [], 'onresize': [], 'onstorage': [], 'onundo': [], 'onunload': []} |
|||
|
|||
let event_attributes_value = { |
|||
\ 'onabort': ['Script', ''], |
|||
\ 'onafterprint': ['Script', ''], |
|||
\ 'onbeforeprint': ['Script', ''], |
|||
\ 'onbeforeunload': ['Script', ''], |
|||
\ 'onblur': ['Script', ''], |
|||
\ 'oncanplay': ['Script', ''], |
|||
\ 'oncanplaythrough': ['Script', ''], |
|||
\ 'onchange': ['Script', ''], |
|||
\ 'onclick': ['Script', ''], |
|||
\ 'oncontextmenu': ['Script', ''], |
|||
\ 'ondblclick': ['Script', ''], |
|||
\ 'ondrag': ['Script', ''], |
|||
\ 'ondragend': ['Script', ''], |
|||
\ 'ondragenter': ['Script', ''], |
|||
\ 'ondragleave': ['Script', ''], |
|||
\ 'ondragover': ['Script', ''], |
|||
\ 'ondragstart': ['Script', ''], |
|||
\ 'ondrop': ['Script', ''], |
|||
\ 'ondurationchange': ['Script', ''], |
|||
\ 'onemptied': ['Script', ''], |
|||
\ 'onended': ['Script', ''], |
|||
\ 'onerror': ['Script', ''], |
|||
\ 'onfocus': ['Script', ''], |
|||
\ 'onformchange': ['Script', ''], |
|||
\ 'onforminput': ['Script', ''], |
|||
\ 'onhashchange': ['Script', ''], |
|||
\ 'oninput': ['Script', ''], |
|||
\ 'oninvalid': ['Script', ''], |
|||
\ 'onkeydown': ['Script', ''], |
|||
\ 'onkeypress': ['Script', ''], |
|||
\ 'onkeyup': ['Script', ''], |
|||
\ 'onload': ['Script', ''], |
|||
\ 'onloadeddata': ['Script', ''], |
|||
\ 'onloadedmetadata': ['Script', ''], |
|||
\ 'onloadstart': ['Script', ''], |
|||
\ 'onmessage': ['Script', ''], |
|||
\ 'onmousedown': ['Script', ''], |
|||
\ 'onmousemove': ['Script', ''], |
|||
\ 'onmouseout': ['Script', ''], |
|||
\ 'onmouseover': ['Script', ''], |
|||
\ 'onmouseup': ['Script', ''], |
|||
\ 'onmousewheel': ['Script', ''], |
|||
\ 'onoffline': ['Script', ''], |
|||
\ 'ononline': ['Script', ''], |
|||
\ 'onpagehide': ['Script', ''], |
|||
\ 'onpageshow': ['Script', ''], |
|||
\ 'onpause': ['Script', ''], |
|||
\ 'onplay': ['Script', ''], |
|||
\ 'onplaying': ['Script', ''], |
|||
\ 'onpopstate': ['Script', ''], |
|||
\ 'onprogress': ['Script', ''], |
|||
\ 'onratechange': ['Script', ''], |
|||
\ 'onreadystatechange': ['Script', ''], |
|||
\ 'onredo': ['Script', ''], |
|||
\ 'onresize': ['Script', ''], |
|||
\ 'onscroll': ['Script', ''], |
|||
\ 'onseeked': ['Script', ''], |
|||
\ 'onseeking': ['Script', ''], |
|||
\ 'onselect': ['Script', ''], |
|||
\ 'onshow': ['Script', ''], |
|||
\ 'onstalled': ['Script', ''], |
|||
\ 'onstorage': ['Script', ''], |
|||
\ 'onsubmit': ['Script', ''], |
|||
\ 'onsuspend': ['Script', ''], |
|||
\ 'ontimeupdate': ['Script', ''], |
|||
\ 'onundo': ['Script', ''], |
|||
\ 'onunload': ['Script', ''], |
|||
\ 'onvolumechange': ['Script', ''], |
|||
\ 'onwaiting': ['Script', ''] |
|||
\ } |
|||
|
|||
let attributes_value = extend(attributes_value, event_attributes_value) |
|||
endif |
|||
if !exists('g:html5_rdfa_attributes_complete') |
|||
let g:html5_rdfa_attributes_complete = 1 |
|||
endif |
|||
if g:html5_rdfa_attributes_complete == 1 |
|||
" http://www.w3.org/TR/rdfa-syntax/#s_metaAttributes |
|||
" http://www.w3.org/TR/rdfa-core/#s_syntax |
|||
let relrev = ['chapter', 'contents', 'copyright', 'first', 'glossary', 'help', 'icon', 'index', 'last', 'license', 'meta', 'next', 'p3pv1', 'prev', 'role', 'section', 'stylesheet', 'subsection', 'start', 'top', 'up'] |
|||
let rdfa_attributes = {'about': [], 'content': [], 'datatype': [], 'prefix': [], 'profile': [], 'property': [], 'resource': [], 'rel': relrev, 'rev': relrev, 'typeof': [], 'vocab': []} |
|||
let global_attributes = extend(global_attributes, rdfa_attributes) |
|||
|
|||
let rdfa_attributes_value = { |
|||
\ 'about': ['SafeCURIEorCURIEorURI', ''], |
|||
\ 'content': ['CDATA String', ''], |
|||
\ 'datatype': ['CURIE', ''], |
|||
\ 'prefix': ['*Prefix', ''], |
|||
\ 'profile': ['String', ''], |
|||
\ 'property': ['*TERMorCURIEorAbsURIs', ''], |
|||
\ 'resource': ['URIorSafeCURIE', ''], |
|||
\ 'rel': ['*TERMorCURIEorAbsURIs', ''], |
|||
\ 'rev': ['*TERMorCURIEorAbsURIs', ''], |
|||
\ 'typeof': ['*TERMorCURIEorAbsURIs', ''], |
|||
\ 'vocab': ['URI', ''] |
|||
\ } |
|||
let attributes_value = extend(attributes_value, rdfa_attributes_value) |
|||
endif |
|||
if !exists('g:html5_microdata_attributes_complete') |
|||
let g:html5_microdata_attributes_complete = 1 |
|||
endif |
|||
if g:html5_microdata_attributes_complete == 1 |
|||
let microdata_attributes = {'itemid': [], 'itemscope': ['itemscope', ''], 'itemtype': [], 'itemprop': [], 'itemref': []} |
|||
let global_attributes = extend(global_attributes, microdata_attributes) |
|||
|
|||
let microdata_attributes_value = { |
|||
\ 'itemid': ['URI', ''], |
|||
\ 'itemscope': ['Bool', ''], |
|||
\ 'itemtype': ['URI', ''], |
|||
\ 'itemprop': ['String', ''], |
|||
\ 'itemref': ['*ID', ''] |
|||
\ } |
|||
let attributes_value = extend(attributes_value, microdata_attributes_value) |
|||
endif |
|||
" }}} |
|||
|
|||
" WAI_ARIA: {{{ |
|||
" Ref: http://www.w3.org/TR/wai-aria/ |
|||
" Version: Draft 15 December 2009 |
|||
if !exists('g:html5_aria_attributes_complete') |
|||
let g:html5_aria_attributes_complete = 1 |
|||
endif |
|||
if g:html5_aria_attributes_complete == 1 |
|||
" Ref: http://www.w3.org/TR/wai-aria/roles |
|||
" Version: Draft 15 December 2009 |
|||
let widget_role = ['alert', 'alertdialog', 'button', 'checkbox', 'combobox', 'dialog', 'gridcell', 'link', 'log', 'marquee', 'menuitem', 'menuitemcheckbox', 'menuitemradio', 'option', 'progressbar', 'radio', 'radiogroup', 'scrollbar', 'slider', 'spinbutton', 'status', 'tab', 'tabpanel', 'textbox', 'timer', 'tooltip', 'treeitem', 'combobox', 'grid', 'listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'] |
|||
let document_structure = ['article', 'columnheader', 'definition', 'directory', 'document', 'group', 'heading', 'img', 'list', 'listitem', 'math', 'note', 'presentation', 'region', 'row', 'rowheader', 'separator'] |
|||
let landmark_role = ['application', 'banner', 'complementary', 'contentinfo', 'form', 'main', 'navigation', 'search'] |
|||
let role = extend(widget_role, document_structure) |
|||
let role = extend(role, landmark_role) |
|||
let global_attributes = extend(global_attributes, {'role': role}) |
|||
endif |
|||
" }}} |
|||
|
|||
" Ref: http://dev.w3.org/html5/markup/ |
|||
" Version: Draft 05 April 2011 |
|||
let phrasing_elements = ['a', 'em', 'strong', 'small', 'mark', 'abbr', 'dfn', 'i', 'b', 'u', 'code', 'var', 'samp', 'kbd', 'sup', 'sub', 'q', 'cite', 'span', 'bdo', 'bdi', 'br', 'wbr', 'ins', 'del', 'img', 'embed', 'object', 'iframe', 'map', 'area', 'script', 'noscript', 'ruby', 'video', 'audio', 'input', 'textarea', 'select', 'button', 'label', 'output', 'datalist', 'keygen', 'progress', 'command', 'canvas', 'time', 'meter'] |
|||
|
|||
let metadata_elements = ['link', 'style', 'meta', 'script', 'noscript', 'command'] |
|||
|
|||
let flow_elements = phrasing_elements + ['p', 'hr', 'pre', 'ul', 'ol', 'dl', 'div', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hgroup', 'address', 'blockquote', 'ins', 'del', 'object', 'map', 'noscript', 'section', 'nav', 'article', 'aside', 'header', 'footer', 'video', 'audio', 'figure', 'table', 'form', 'fieldset', 'menu', 'canvas', 'details'] |
|||
|
|||
" http://dev.w3.org/html5/spec/Overview.html#linkTypes |
|||
let linktypes = ['alternate', 'author', 'bookmark', 'external', 'help', 'icon', 'license', 'next', 'nofollow', 'noreferrer', 'pingback', 'prefetch', 'prev', 'search', 'stylesheet', 'sidebar', 'tag'] |
|||
" http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html |
|||
let linkreltypes = linktypes + ['canonical'] |
|||
|
|||
" a and button are special elements for interactive, some element can't be its descendent |
|||
let abutton_dec = 'details\\|embed\\|iframe\\|keygen\\|label\\|menu\\|select\\|textarea' |
|||
|
|||
|
|||
|
|||
let g:xmldata_html5 = { |
|||
\ 'vimxmlentities': ['AElig', 'Aacute', 'Acirc', 'Agrave', 'Alpha', 'Aring', 'Atilde', 'Auml', 'Beta', 'Ccedil', 'Chi', 'Dagger', 'Delta', 'ETH', 'Eacute', 'Ecirc', 'Egrave', 'Epsilon', 'Eta', 'Euml', 'Gamma', 'Iacute', 'Icirc', 'Igrave', 'Iota', 'Iuml', 'Kappa', 'Lambda', 'Mu', 'Ntilde', 'Nu', 'OElig', 'Oacute', 'Ocirc', 'Ograve', 'Omega', 'Omicron', 'Oslash', 'Otilde', 'Ouml', 'Phi', 'Pi', 'Prime', 'Psi', 'Rho', 'Scaron', 'Sigma', 'THORN', 'Tau', 'Theta', 'Uacute', 'Ucirc', 'Ugrave', 'Upsilon', 'Uuml', 'Xi', 'Yacute', 'Yuml', 'Zeta', 'aacute', 'acirc', 'acute', 'aelig', 'agrave', 'alefsym', 'alpha', 'amp', 'and', 'ang', 'apos', 'aring', 'asymp', 'atilde', 'auml', 'bdquo', 'beta', 'brvbar', 'bull', 'cap', 'ccedil', 'cedil', 'cent', 'chi', 'circ', 'clubs', 'cong', 'copy', 'crarr', 'cup', 'curren', 'dArr', 'dagger', 'darr', 'deg', 'delta', 'diams', 'divide', 'eacute', 'ecirc', 'egrave', 'empty', 'emsp', 'ensp', 'epsilon', 'equiv', 'eta', 'eth', 'euml', 'euro', 'exist', 'fnof', 'forall', 'frac12', 'frac14', 'frac34', 'frasl', 'gamma', 'ge', 'gt', 'hArr', 'harr', 'hearts', 'hellip', 'iacute', 'icirc', 'iexcl', 'igrave', 'image', 'infin', 'int', 'iota', 'iquest', 'isin', 'iuml', 'kappa', 'lArr', 'lambda', 'lang', 'laquo', 'larr', 'lceil', 'ldquo', 'le', 'lfloor', 'lowast', 'loz', 'lrm', 'lsaquo', 'lsquo', 'lt', 'macr', 'mdash', 'micro', 'middot', 'minus', 'mu', 'nabla', 'nbsp', 'ndash', 'ne', 'ni', 'not', 'notin', 'nsub', 'ntilde', 'nu', 'oacute', 'ocirc', 'oelig', 'ograve', 'oline', 'omega', 'omicron', 'oplus', 'or', 'ordf', 'ordm', 'oslash', 'otilde', 'otimes', 'ouml', 'para', 'part', 'permil', 'perp', 'phi', 'pi', 'piv', 'plusmn', 'pound', 'prime', 'prod', 'prop', 'psi', 'quot', 'rArr', 'radic', 'rang', 'raquo', 'rarr', 'rceil', 'rdquo', 'real', 'reg', 'rfloor', 'rho', 'rlm', 'rsaquo', 'rsquo', 'sbquo', 'scaron', 'sdot', 'sect', 'shy', 'sigma', 'sigmaf', 'sim', 'spades', 'sub', 'sube', 'sum', 'sup', 'sup1', 'sup2', 'sup3', 'supe', 'szlig', 'tau', 'there4', 'theta', 'thetasym', 'thinsp', 'thorn', 'tilde', 'times', 'trade', 'uArr', 'uacute', 'uarr', 'ucirc', 'ugrave', 'uml', 'upsih', 'upsilon', 'uuml', 'weierp', 'xi', 'yacute', 'yen', 'yuml', 'zeta', 'zwj', 'zwnj'], |
|||
\ 'vimxmlroot': ['html'], |
|||
\ 'a': [ |
|||
\ filter(copy(flow_elements), "!(v:val =~ '". abutton_dec ."')"), |
|||
\ extend(copy(global_attributes), {'name': [], 'href': [], 'target': [], 'rel': linktypes, 'hreflang': lang_tag, 'media': [], 'type': []}) |
|||
\ ], |
|||
\ 'abbr': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'address': [ |
|||
\ filter(copy(flow_elements), "!(v:val =~ 'address\\|nav\\|article\\|header\\|footer\\|section\\|aside\\|h1\\|h2\\|h3\\|h4\\|h5\\|h6')"), |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'area': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'alt': [], 'href': [], 'target': [], 'rel': linktypes, 'media': [], 'hreflang': lang_tag, 'type': [], 'shape': ['rect', 'circle', 'poly', 'default'], 'coords': []}) |
|||
\ ], |
|||
\ 'article': [ |
|||
\ flow_elements + ['style'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'aside': [ |
|||
\ flow_elements + ['style'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'audio': [ |
|||
\ flow_elements + ['source', 'track'], |
|||
\ extend(copy(global_attributes), {'autoplay': ['autoplay', ''], 'preload': ['none', 'metadata', 'auto', ''], 'controls': ['controls', ''], 'loop': ['loop', ''], 'src': []}) |
|||
\ ], |
|||
\ 'b': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'base': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'href': [], 'target': []}) |
|||
\ ], |
|||
\ 'bdo': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'bdi': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'blockquote': [ |
|||
\ flow_elements, |
|||
\ extend(copy(global_attributes), {'cite': []}) |
|||
\ ], |
|||
\ 'body': [ |
|||
\ flow_elements, |
|||
\ extend(copy(global_attributes), body_attributes) |
|||
\ ], |
|||
\ 'br': [ |
|||
\ [], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'button': [ |
|||
\ filter(copy(phrasing_elements), "!(v:val =~ '". abutton_dec ."')"), |
|||
\ extend(copy(global_attributes), {'type': ['submit', 'reset', 'button'], 'name': [], 'disabled': ['disabled', ''], 'form': [], 'value': [], 'formaction': [], 'autofocus': ['autofocus', ''], 'formenctype': ['application/x-www-form-urlencoded', 'multipart/form-data', 'text/plain'], 'formmethod': ['get', 'post', 'put', 'delete'], 'formtarget': [], 'formnovalidate': ['formnovalidate', '']}) |
|||
\ ], |
|||
\ 'canvas': [ |
|||
\ flow_elements, |
|||
\ extend(copy(global_attributes), {'height': [], 'width': []}) |
|||
\ ], |
|||
\ 'caption': [ |
|||
\ filter(copy(flow_elements), "!(v:val =~ 'table')"), |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'cite': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'code': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'col': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'span': []}) |
|||
\ ], |
|||
\ 'colgroup': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'span': []}) |
|||
\ ], |
|||
\ 'command': [ |
|||
\ ['col'], |
|||
\ extend(copy(global_attributes), {'type': ['command', 'radio', 'checkbox'], 'radiogroup': [], 'checked': ['checked', ''], 'label': [], 'icon': [], 'disabled': ['disabled', '']}) |
|||
\ ], |
|||
\ 'datalist': [ |
|||
\ phrasing_elements + ['option'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'dd': [ |
|||
\ flow_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'del': [ |
|||
\ flow_elements, |
|||
\ extend(copy(global_attributes), {'cite': [], 'datetime': []}) |
|||
\ ], |
|||
\ 'details': [ |
|||
\ flow_elements + ['summary'], |
|||
\ extend(copy(global_attributes), {'open': ['open', '']}) |
|||
\ ], |
|||
\ 'dfn': [ |
|||
\ filter(copy(phrasing_elements), "!(v:val =~ 'dfn')"), |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'div': [ |
|||
\ flow_elements + ['style'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'dl': [ |
|||
\ ['dt', 'dd'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'dt': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'em': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'embed': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'src': [], 'type': [], 'height': [], 'width': []}) |
|||
\ ], |
|||
\ 'fieldset': [ |
|||
\ flow_elements + ['legend'], |
|||
\ extend(copy(global_attributes), {'name': [], 'disabled': ['disabled', ''], 'form': []}) |
|||
\ ], |
|||
\ 'figcaption': [ |
|||
\ flow_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'figure': [ |
|||
\ flow_elements + ['figcaption'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'footer': [ |
|||
\ filter(copy(flow_elements), "!(v:val =~ 'address\\|header\\|footer')"), |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'form': [ |
|||
\ flow_elements, |
|||
\ extend(copy(global_attributes), {'name': [], 'action': [], 'enctype': ['application/x-www-form-urlencoded', 'multipart/form-data', 'text/plain'], 'method': ['get', 'post', 'put', 'delete'], 'target': [], 'novalidate': ['novalidate', ''], 'accept-charset': charset, 'autocomplete': ['on', 'off']}) |
|||
\ ], |
|||
\ 'h1': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'h2': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'h3': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'h4': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'h5': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'h6': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'head': [ |
|||
\ metadata_elements + ['title', 'base'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'header': [ |
|||
\ filter(copy(flow_elements), "!(v:val =~ 'address\\|header\\|footer')"), |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'hgroup': [ |
|||
\ ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'hr': [ |
|||
\ [], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'html': [ |
|||
\ ['head', 'body'], |
|||
\ extend(copy(global_attributes), {'manifest': [], 'version': ['HTML+RDFa 1.1']}) |
|||
\ ], |
|||
\ 'i': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'iframe': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'src': [], 'name': [], 'width': [], 'height': [], 'sandbox': ['allow-same-origin', 'allow-forms', 'allow-scripts'], 'seamless': ['seamless', '']}) |
|||
\ ], |
|||
\ 'img': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'src': [], 'alt': [], 'height': [], 'width': [], 'usemap': [], 'ismap': ['ismap', '']}) |
|||
\ ], |
|||
\ 'input': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'type': ['text', 'password', 'checkbox', 'radio', 'button', 'submit', 'reset', 'file', 'hidden', 'image', 'datetime', 'datetime-local', 'date', 'month', 'time', 'week', 'number', 'range', 'email', 'url', 'search', 'tel', 'coloe'], 'name': [], 'disabled': ['disabled', ''], 'form': [], 'maxlength': [], 'readonly': ['readonly', ''], 'size': [], 'value': [], 'autocomplete': ['on', 'off'], 'autofocus': ['autofocus', ''], 'list': [], 'pattern': [], 'required': ['required', ''], 'placeholder': [], 'checked': ['checked'], 'accept': [], 'multiple': ['multiple', ''], 'alt': [], 'src': [], 'height': [], 'width': [], 'min': [], 'max': [], 'step': [], 'formenctype': ['application/x-www-form-urlencoded', 'multipart/form-data', 'text/plain'], 'formmethod': ['get', 'post', 'put', 'delete'], 'formtarget': [], 'formnovalidate': ['formnovalidate', '']}) |
|||
\ ], |
|||
\ 'ins': [ |
|||
\ flow_elements, |
|||
\ extend(copy(global_attributes), {'cite': [], 'datetime': []}) |
|||
\ ], |
|||
\ 'kbd': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'keygen': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'challenge': [], 'keytype': ['rsa'], 'autofocus': ['autofocus', ''], 'name': [], 'disabled': ['disabled', ''], 'form': []}) |
|||
\ ], |
|||
\ 'label': [ |
|||
\ filter(copy(phrasing_elements), "!(v:val =~ 'label')"), |
|||
\ extend(copy(global_attributes), {'for': [], 'form': []}) |
|||
\ ], |
|||
\ 'legend': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'li': [ |
|||
\ flow_elements, |
|||
\ extend(copy(global_attributes), {'value': []}) |
|||
\ ], |
|||
\ 'link': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'href': [], 'rel': linkreltypes, 'hreflang': lang_tag, 'media': [], 'type': [], 'sizes': ['any']}) |
|||
\ ], |
|||
\ 'map': [ |
|||
\ flow_elements, |
|||
\ extend(copy(global_attributes), {'name': []}) |
|||
\ ], |
|||
\ 'mark': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'menu': [ |
|||
\ flow_elements + ['li'], |
|||
\ extend(copy(global_attributes), {'type': ['toolbar', 'context'], 'label': []}) |
|||
\ ], |
|||
\ 'meta': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'name': [], 'http-equiv': ['refresh', 'default-style', 'content-type'], 'content': [], 'charset': charset}) |
|||
\ ], |
|||
\ 'meter': [ |
|||
\ phrasing_elements, |
|||
\ extend(copy(global_attributes), {'value': [], 'min': [], 'low': [], 'high': [], 'max': [], 'optimum': []}) |
|||
\ ], |
|||
\ 'nav': [ |
|||
\ flow_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'noscript': [ |
|||
\ flow_elements + ['link', 'meta', 'style'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'object': [ |
|||
\ flow_elements + ['param'], |
|||
\ extend(copy(global_attributes), {'data': [], 'type': [], 'height': [], 'width': [], 'usemap': [], 'name': [], 'form': []}) |
|||
\ ], |
|||
\ 'ol': [ |
|||
\ ['li'], |
|||
\ extend(copy(global_attributes), {'start': [], 'reversed': ['reversed', '']}) |
|||
\ ], |
|||
\ 'optgroup': [ |
|||
\ ['option'], |
|||
\ extend(copy(global_attributes), {'label': [], 'disabled': ['disabled', '']}) |
|||
\ ], |
|||
\ 'option': [ |
|||
\ [''], |
|||
\ extend(copy(global_attributes), {'disabled': ['disabled', ''], 'selected': ['selected', ''], 'label': [], 'value': []}) |
|||
\ ], |
|||
\ 'output': [ |
|||
\ phrasing_elements, |
|||
\ extend(copy(global_attributes), {'name': [], 'form': [], 'for': []}) |
|||
\ ], |
|||
\ 'p': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'param': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'name': [], 'value': []}) |
|||
\ ], |
|||
\ 'pre': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'progress': [ |
|||
\ filter(copy(phrasing_elements), "!(v:val =~ 'progress')"), |
|||
\ extend(copy(global_attributes), {'value': [], 'max': []}) |
|||
\ ], |
|||
\ 'q': [ |
|||
\ phrasing_elements, |
|||
\ extend(copy(global_attributes), {'cite': []}) |
|||
\ ], |
|||
\ 'rp': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'rt': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'ruby': [ |
|||
\ phrasing_elements + ['rp', 'rt'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'samp': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'script': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'src': [], 'defer': ['defer', ''], 'async': ['async', ''], 'type': [], 'charset': charset}) |
|||
\ ], |
|||
\ 'section': [ |
|||
\ flow_elements + ['style'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'select': [ |
|||
\ ['optgroup', 'option'], |
|||
\ extend(copy(global_attributes), {'name': [], 'disabled': ['disabled', ''], 'form': [], 'size': [], 'multiple': ['multiple', '']}) |
|||
\ ], |
|||
\ 'small': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'source': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'src': [], 'type': [], 'media': []}) |
|||
\ ], |
|||
\ 'span': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'strong': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'style': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'type': [], 'media': [], 'scoped': ['scoped', '']}) |
|||
\ ], |
|||
\ 'sub': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'summary': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'sup': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'table': [ |
|||
\ ['caption', 'col', 'colgroup', 'thead', 'tfoot', 'tbody', 'tr'], |
|||
\ extend(copy(global_attributes), {'border': []}) |
|||
\ ], |
|||
\ 'tbody': [ |
|||
\ ['tr'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'td': [ |
|||
\ flow_elements, |
|||
\ extend(copy(global_attributes), {'colspan': [], 'rowspan': [], 'headers': []}) |
|||
\ ], |
|||
\ 'textarea': [ |
|||
\ [''], |
|||
\ extend(copy(global_attributes), {'name': [], 'disabled': ['disabled', ''], 'form': [], 'readonly': ['readonly', ''], 'maxlength': [], 'autofocus': ['autofocus', ''], 'required': ['required', ''], 'placeholder': [], 'rows': [], 'wrap': ['hard', 'soft'], 'cols': []}) |
|||
\ ], |
|||
\ 'tfoot': [ |
|||
\ ['tr'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'th': [ |
|||
\ phrasing_elements, |
|||
\ extend(copy(global_attributes), {'scope': ['row', 'col', 'rowgroup', 'colgroup'], 'colspan': [], 'rowspan': [], 'headers': []}) |
|||
\ ], |
|||
\ 'thead': [ |
|||
\ ['tr'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'time': [ |
|||
\ phrasing_elements, |
|||
\ extend(copy(global_attributes), {'datetime': [], 'pubdate': ['pubdate', '']}) |
|||
\ ], |
|||
\ 'title': [ |
|||
\ [''], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'tr': [ |
|||
\ ['th', 'td'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'track': [ |
|||
\ [], |
|||
\ extend(copy(global_attributes), {'kind': ['subtitles', 'captions', 'descriptions', 'chapters', 'metadata'], 'src': [], 'charset': charset, 'srclang': lang_tag, 'label': []}) |
|||
\ ], |
|||
\ 'u': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'ul': [ |
|||
\ ['li'], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'var': [ |
|||
\ phrasing_elements, |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'video': [ |
|||
\ flow_elements + ['source', 'track'], |
|||
\ extend(copy(global_attributes), {'autoplay': ['autoplay', ''], 'preload': ['none', 'metadata', 'auto', ''], 'controls': ['controls', ''], 'loop': ['loop', ''], 'poster': [], 'height': [], 'width': [], 'src': []}) |
|||
\ ], |
|||
\ 'wbr': [ |
|||
\ [], |
|||
\ global_attributes |
|||
\ ], |
|||
\ 'vimxmlattrinfo' : attributes_value, |
|||
\ 'vimxmltaginfo': { |
|||
\ 'area': ['/>', ''], |
|||
\ 'base': ['/>', ''], |
|||
\ 'br': ['/>', ''], |
|||
\ 'col': ['/>', ''], |
|||
\ 'command': ['/>', ''], |
|||
\ 'embed': ['/>', ''], |
|||
\ 'hr': ['/>', ''], |
|||
\ 'img': ['/>', ''], |
|||
\ 'input': ['/>', ''], |
|||
\ 'keygen': ['/>', ''], |
|||
\ 'link': ['/>', ''], |
|||
\ 'meta': ['/>', ''], |
|||
\ 'param': ['/>', ''], |
|||
\ 'source': ['/>', ''], |
|||
\ 'track': ['/>', ''], |
|||
\ 'wbr': ['/>', ''], |
|||
\ }, |
|||
\ } |
@ -1,5 +0,0 @@ |
|||
" Vim filetype detection file for Conky config files |
|||
" |
|||
|
|||
au BufNewFile,BufRead *conkyrc set filetype=conkyrc |
|||
au BufNewFile,BufRead conky.conf set filetype=conkyrc |
@ -1,304 +0,0 @@ |
|||
" Description: HTML5 and inline SVG indenter |
|||
" Changed By: HT de Beer <H.T.de.Beer@gmail.com> |
|||
" Last Change: 20121013 |
|||
" Added the SVG elements to the list of indenting element. SVG elements |
|||
" taken from http://www.w3.org/TR/SVG/eltindex.html |
|||
" |
|||
" Description: html5 (and html4) indenter |
|||
" Changed By: Brian Gershon <brian.five@gmail.com> |
|||
" Last Change: 30 Jan 2011 |
|||
" |
|||
" 1. Started with vim72 html indent file authored by Johannes Zellner (below) |
|||
" 2. Added html5 list as described here: |
|||
" http://stackoverflow.com/questions/3232518/how-to-update-vim-to-color-code-new-html-elements |
|||
" 3. Added this to a fork of https://github.com/othree/html5.vim |
|||
" which already provides nice html5 syntax highlighting. |
|||
" |
|||
" Description: html indenter |
|||
" Author: Johannes Zellner <johannes@zellner.org> |
|||
" Last Change: Mo, 05 Jun 2006 22:32:41 CEST |
|||
" Restoring 'cpo' and 'ic' added by Bram 2006 May 5 |
|||
" Globals: |
|||
" let g:html_indent_tags = ['testag'] |
|||
" let g:html_exclude_tags = ['html', 'style', 'script', 'body'] |
|||
|
|||
|
|||
" Only load this indent file when no other was loaded. |
|||
if exists("b:did_indent") |
|||
finish |
|||
endif |
|||
let b:did_indent = 1 |
|||
|
|||
" [-- local settings (must come before aborting the script) --] |
|||
setlocal indentexpr=HtmlIndentGet(v:lnum) |
|||
setlocal indentkeys=o,O,*<Return>,<>>,{,} |
|||
|
|||
|
|||
let s:tags = [] |
|||
|
|||
" [-- <ELEMENT ? - - ...> --] |
|||
call add(s:tags, 'a') |
|||
call add(s:tags, 'abbr') |
|||
call add(s:tags, 'acronym') |
|||
call add(s:tags, 'address') |
|||
call add(s:tags, 'b') |
|||
call add(s:tags, 'bdo') |
|||
call add(s:tags, 'big') |
|||
call add(s:tags, 'blockquote') |
|||
call add(s:tags, 'button') |
|||
call add(s:tags, 'caption') |
|||
call add(s:tags, 'center') |
|||
call add(s:tags, 'cite') |
|||
call add(s:tags, 'code') |
|||
call add(s:tags, 'colgroup') |
|||
call add(s:tags, 'del') |
|||
call add(s:tags, 'dfn') |
|||
call add(s:tags, 'dir') |
|||
call add(s:tags, 'div') |
|||
call add(s:tags, 'dl') |
|||
call add(s:tags, 'em') |
|||
call add(s:tags, 'fieldset') |
|||
call add(s:tags, 'font') |
|||
call add(s:tags, 'form') |
|||
call add(s:tags, 'frameset') |
|||
call add(s:tags, 'h1') |
|||
call add(s:tags, 'h2') |
|||
call add(s:tags, 'h3') |
|||
call add(s:tags, 'h4') |
|||
call add(s:tags, 'h5') |
|||
call add(s:tags, 'h6') |
|||
call add(s:tags, 'i') |
|||
call add(s:tags, 'iframe') |
|||
call add(s:tags, 'ins') |
|||
call add(s:tags, 'kbd') |
|||
call add(s:tags, 'label') |
|||
call add(s:tags, 'legend') |
|||
call add(s:tags, 'li') |
|||
call add(s:tags, 'map') |
|||
call add(s:tags, 'menu') |
|||
call add(s:tags, 'noframes') |
|||
call add(s:tags, 'noscript') |
|||
call add(s:tags, 'object') |
|||
call add(s:tags, 'ol') |
|||
call add(s:tags, 'optgroup') |
|||
call add(s:tags, 'p') |
|||
" call add(s:tags, 'pre') |
|||
call add(s:tags, 'q') |
|||
call add(s:tags, 's') |
|||
call add(s:tags, 'samp') |
|||
call add(s:tags, 'script') |
|||
call add(s:tags, 'select') |
|||
call add(s:tags, 'small') |
|||
call add(s:tags, 'span') |
|||
call add(s:tags, 'strong') |
|||
call add(s:tags, 'style') |
|||
call add(s:tags, 'sub') |
|||
call add(s:tags, 'sup') |
|||
call add(s:tags, 'table') |
|||
call add(s:tags, 'textarea') |
|||
call add(s:tags, 'title') |
|||
call add(s:tags, 'tt') |
|||
call add(s:tags, 'u') |
|||
call add(s:tags, 'ul') |
|||
call add(s:tags, 'var') |
|||
|
|||
" New HTML 5 elements |
|||
call add(s:tags, 'article') |
|||
call add(s:tags, 'aside') |
|||
call add(s:tags, 'audio') |
|||
call add(s:tags, 'canvas') |
|||
call add(s:tags, 'datalist') |
|||
call add(s:tags, 'details') |
|||
call add(s:tags, 'figcaption') |
|||
call add(s:tags, 'figure') |
|||
call add(s:tags, 'footer') |
|||
call add(s:tags, 'header') |
|||
call add(s:tags, 'hgroup') |
|||
call add(s:tags, 'mark') |
|||
call add(s:tags, 'meter') |
|||
call add(s:tags, 'nav') |
|||
call add(s:tags, 'output') |
|||
call add(s:tags, 'progress') |
|||
call add(s:tags, 'rp') |
|||
call add(s:tags, 'rt') |
|||
call add(s:tags, 'ruby') |
|||
call add(s:tags, 'section') |
|||
call add(s:tags, 'summary') |
|||
call add(s:tags, 'time') |
|||
call add(s:tags, 'video') |
|||
call add(s:tags, 'bdi') |
|||
|
|||
" Common inline used SVG elements |
|||
call add(s:tags, 'clipPath') |
|||
call add(s:tags, 'defs') |
|||
call add(s:tags, 'desc') |
|||
call add(s:tags, 'filter') |
|||
call add(s:tags, 'foreignObject') |
|||
call add(s:tags, 'g') |
|||
call add(s:tags, 'linearGradient') |
|||
call add(s:tags, 'marker') |
|||
call add(s:tags, 'mask') |
|||
call add(s:tags, 'pattern') |
|||
call add(s:tags, 'radialGradient') |
|||
call add(s:tags, 'svg') |
|||
call add(s:tags, 'switch') |
|||
call add(s:tags, 'symbol') |
|||
call add(s:tags, 'text') |
|||
call add(s:tags, 'textPath') |
|||
call add(s:tags, 'tref') |
|||
call add(s:tags, 'tspan') |
|||
|
|||
call add(s:tags, 'html') |
|||
call add(s:tags, 'head') |
|||
call add(s:tags, 'body') |
|||
|
|||
call add(s:tags, 'thead') |
|||
call add(s:tags, 'tbody') |
|||
call add(s:tags, 'tfoot') |
|||
call add(s:tags, 'tr') |
|||
call add(s:tags, 'th') |
|||
call add(s:tags, 'td') |
|||
|
|||
if exists('g:html_exclude_tags') |
|||
for tag in g:html_exclude_tags |
|||
call remove(s:tags, index(s:tags, tag)) |
|||
endfor |
|||
endif |
|||
if exists('g:html_indent_tags') |
|||
call extend(s:tags, g:html_indent_tags) |
|||
endif |
|||
let s:html_indent_tags = join(s:tags, '\|') |
|||
|
|||
let s:cpo_save = &cpo |
|||
set cpo-=C |
|||
|
|||
" [-- count indent-increasing tags of line a:lnum --] |
|||
fun! <SID>HtmlIndentOpen(lnum, pattern) |
|||
let s = substitute('x'.getline(a:lnum), |
|||
\ '.\{-}\(\(<\)\('.a:pattern.'\)\>\)', "\1", 'g') |
|||
let s = substitute(s, "[^\1].*$", '', '') |
|||
return strlen(s) |
|||
endfun |
|||
|
|||
" [-- count indent-decreasing tags of line a:lnum --] |
|||
fun! <SID>HtmlIndentClose(lnum, pattern) |
|||
let s = substitute('x'.getline(a:lnum), |
|||
\ '.\{-}\(\(<\)/\('.a:pattern.'\)\>>\)', "\1", 'g') |
|||
let s = substitute(s, "[^\1].*$", '', '') |
|||
return strlen(s) |
|||
endfun |
|||
|
|||
" [-- count indent-increasing '{' of (java|css) line a:lnum --] |
|||
fun! <SID>HtmlIndentOpenAlt(lnum) |
|||
return strlen(substitute(getline(a:lnum), '[^{]\+', '', 'g')) |
|||
endfun |
|||
|
|||
" [-- count indent-decreasing '}' of (java|css) line a:lnum --] |
|||
fun! <SID>HtmlIndentCloseAlt(lnum) |
|||
return strlen(substitute(getline(a:lnum), '[^}]\+', '', 'g')) |
|||
endfun |
|||
|
|||
" [-- return the sum of indents respecting the syntax of a:lnum --] |
|||
fun! <SID>HtmlIndentSum(lnum, style) |
|||
if a:style == match(getline(a:lnum), '^\s*</') |
|||
if a:style == match(getline(a:lnum), '^\s*</\<\('.s:html_indent_tags.'\)\>') |
|||
let open = <SID>HtmlIndentOpen(a:lnum, s:html_indent_tags) |
|||
let close = <SID>HtmlIndentClose(a:lnum, s:html_indent_tags) |
|||
if 0 != open || 0 != close |
|||
return open - close |
|||
endif |
|||
endif |
|||
endif |
|||
if '' != &syntax && |
|||
\ synIDattr(synID(a:lnum, 1, 1), 'name') =~ '\(css\|java\).*' && |
|||
\ synIDattr(synID(a:lnum, strlen(getline(a:lnum)), 1), 'name') |
|||
\ =~ '\(css\|java\).*' |
|||
if a:style == match(getline(a:lnum), '^\s*}') |
|||
return <SID>HtmlIndentOpenAlt(a:lnum) - <SID>HtmlIndentCloseAlt(a:lnum) |
|||
endif |
|||
endif |
|||
return 0 |
|||
endfun |
|||
|
|||
fun! HtmlIndentGet(lnum) |
|||
" Find a non-empty line above the current line. |
|||
let lnum = prevnonblank(a:lnum - 1) |
|||
|
|||
" Hit the start of the file, use zero indent. |
|||
if lnum == 0 |
|||
return 0 |
|||
endif |
|||
|
|||
let restore_ic = &ic |
|||
setlocal ic " ignore case |
|||
|
|||
" [-- special handling for <pre>: no indenting --] |
|||
if getline(a:lnum) =~ '\c</pre>' |
|||
\ || 0 < searchpair('\c<pre>', '', '\c</pre>', 'nWb') |
|||
\ || 0 < searchpair('\c<pre>', '', '\c</pre>', 'nW') |
|||
" we're in a line with </pre> or inside <pre> ... </pre> |
|||
if restore_ic == 0 |
|||
setlocal noic |
|||
endif |
|||
return -1 |
|||
endif |
|||
|
|||
" [-- special handling for <javascript>: use cindent --] |
|||
let js = '<script' |
|||
|
|||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" |
|||
" by Tye Zdrojewski <zdro@yahoo.com>, 05 Jun 2006 |
|||
" ZDR: This needs to be an AND (we are 'after the start of the pair' AND |
|||
" we are 'before the end of the pair'). Otherwise, indentation |
|||
" before the start of the script block will be affected; the end of |
|||
" the pair will still match if we are before the beginning of the |
|||
" pair. |
|||
" |
|||
if 0 < searchpair(js, '', '</script>', 'nWb') |
|||
\ && 0 < searchpair(js, '', '</script>', 'nW') |
|||
" we're inside javascript |
|||
if getline(lnum) !~ js && getline(a:lnum) != '</script>' |
|||
if restore_ic == 0 |
|||
setlocal noic |
|||
endif |
|||
return cindent(a:lnum) |
|||
endif |
|||
endif |
|||
|
|||
if getline(lnum) =~ '\c</pre>' |
|||
" line before the current line a:lnum contains |
|||
" a closing </pre>. --> search for line before |
|||
" starting <pre> to restore the indent. |
|||
let preline = prevnonblank(search('\c<pre>', 'bW') - 1) |
|||
if preline > 0 |
|||
if restore_ic == 0 |
|||
setlocal noic |
|||
endif |
|||
|
|||
if 0 == match(getline(a:lnum), '^\s*</') |
|||
return indent(preline) - (1*&sw) |
|||
else |
|||
return indent(preline) |
|||
endif |
|||
endif |
|||
endif |
|||
|
|||
let ind = <SID>HtmlIndentSum(lnum, -1) |
|||
let ind = ind + <SID>HtmlIndentSum(a:lnum, 0) |
|||
|
|||
" Fix for conditional comment |
|||
if getline(a:lnum) =~ '\c<!--.*<\(html\|body\).*-->' |
|||
let ind = ind - 1 |
|||
endif |
|||
|
|||
if restore_ic == 0 |
|||
setlocal noic |
|||
endif |
|||
|
|||
return indent(lnum) + (&sw * ind) |
|||
endfun |
|||
|
|||
let &cpo = s:cpo_save |
|||
unlet s:cpo_save |
|||
|
|||
" [-- EOF <runtime>/indent/html.vim --] |
@ -1,164 +0,0 @@ |
|||
" Maintainer: Robert Melton ( iam -at- robertmelton -dot- com) |
|||
" Last Change: 2010 Jan 20th |
|||
|
|||
" default schemes |
|||
amenu T&hemes.D&efault.Blue :colo blue<CR> |
|||
amenu T&hemes.D&efault.DarkBlue :colo darkblue<CR> |
|||
amenu T&hemes.D&efault.Default :colo default<CR> |
|||
amenu T&hemes.D&efault.Delek :colo delek<CR> |
|||
amenu T&hemes.D&efault.Desert :colo desert<CR> |
|||
amenu T&hemes.D&efault.ElfLord :colo elflord<CR> |
|||
amenu T&hemes.D&efault.Evening :colo evening<CR> |
|||
amenu T&hemes.D&efault.Koehler :colo koehler<CR> |
|||
amenu T&hemes.D&efault.Morning :colo morning<CR> |
|||
amenu T&hemes.D&efault.Murphy :colo murphy<CR> |
|||
amenu T&hemes.D&efault.Pablo :colo pablo<CR> |
|||
amenu T&hemes.D&efault.PeachPuff :colo peachpuff<CR> |
|||
amenu T&hemes.D&efault.Ron :colo ron<CR> |
|||
amenu T&hemes.D&efault.Shine :colo shine<CR> |
|||
amenu T&hemes.D&efault.Torte :colo torte<CR> |
|||
amenu T&hemes.-s1- : |
|||
|
|||
" 37 new themes |
|||
amenu T&hemes.&New.&Dark.Adaryn :colo adaryn<CR> |
|||
amenu T&hemes.&New.&Dark.Adrian :colo adrian<CR> |
|||
amenu T&hemes.&New.&Dark.Anotherdark :colo anotherdark<CR> |
|||
amenu T&hemes.&New.&Dark.BlackSea :colo blacksea<CR> |
|||
amenu T&hemes.&New.&Dark.Colorer :colo colorer<CR> |
|||
amenu T&hemes.&New.&Dark.Darkbone :colo darkbone<CR> |
|||
amenu T&hemes.&New.&Dark.DarkZ :colo darkz<CR> |
|||
amenu T&hemes.&New.&Dark.Herald :colo herald<CR> |
|||
amenu T&hemes.&New.&Dark.Jammy :colo jammy<CR> |
|||
amenu T&hemes.&New.&Dark.Kellys :colo kellys<CR> |
|||
amenu T&hemes.&New.&Dark.Lettuce :colo lettuce<CR> |
|||
amenu T&hemes.&New.&Dark.Maroloccio :colo maroloccio<CR> |
|||
amenu T&hemes.&New.&Dark.Molokai :colo molokai<CR> |
|||
amenu T&hemes.&New.&Dark.Mustang :colo mustang<CR> |
|||
amenu T&hemes.&New.&Dark.TIRBlack :colo tir_black<CR> |
|||
amenu T&hemes.&New.&Dark.Twilight :colo twilight<CR> |
|||
amenu T&hemes.&New.&Dark.Two2Tango :colo two2tango<CR> |
|||
amenu T&hemes.&New.&Dark.Wuye :colo wuye<CR> |
|||
amenu T&hemes.&New.&Dark.Zmrok :colo zmrok<CR> |
|||
amenu T&hemes.&New.&Light.BClear :colo bclear<CR> |
|||
amenu T&hemes.&New.&Light.Satori :colo satori<CR> |
|||
amenu T&hemes.&New.&Light.Silent :colo silent<CR> |
|||
amenu T&hemes.&New.&Light.SoSo :colo soso<CR> |
|||
amenu T&hemes.&New.&Light.SummerFruit256 :colo summerfruit256<CR> |
|||
amenu T&hemes.&New.&Light.TAqua :colo taqua<CR> |
|||
amenu T&hemes.&New.&Light.TCSoft :colo tcsoft<CR> |
|||
amenu T&hemes.&New.&Light.VYLight :colo vylight<CR> |
|||
amenu T&hemes.&New.&Other.Aqua :colo aqua<CR> |
|||
amenu T&hemes.&New.&Other.Clarity :colo clarity<CR> |
|||
amenu T&hemes.&New.&Other.CleanPHP :colo cleanphp<CR> |
|||
amenu T&hemes.&New.&Other.Denim :colo denim<CR> |
|||
amenu T&hemes.&New.&Other.Guardian :colo guardian<CR> |
|||
amenu T&hemes.&New.&Other.Moss :colo moss<CR> |
|||
amenu T&hemes.&New.&Other.Nightshimmer :colo nightshimmer<CR> |
|||
amenu T&hemes.&New.&Other.NoQuarter :colo no_quarter<CR> |
|||
amenu T&hemes.&New.&Other.RobinHood :colo robinhood<CR> |
|||
amenu T&hemes.&New.&Other.SoftBlue :colo softblue<CR> |
|||
amenu T&hemes.&New.&Other.Wood :colo wood<CR> |
|||
|
|||
" 30 removed themes |
|||
amenu T&hemes.De&precated.&Dark.DwBlue :colo dw_blue<CR> |
|||
amenu T&hemes.De&precated.&Dark.DwCyan :colo dw_cyan<CR> |
|||
amenu T&hemes.De&precated.&Dark.DwGreen :colo dw_green<CR> |
|||
amenu T&hemes.De&precated.&Dark.DwOrange :colo dw_orange<CR> |
|||
amenu T&hemes.De&precated.&Dark.DwPurple :colo dw_purple<CR> |
|||
amenu T&hemes.De&precated.&Dark.DwRed :colo dw_red<CR> |
|||
amenu T&hemes.De&precated.&Dark.DwYellow :colo dw_yellow<CR> |
|||
amenu T&hemes.De&precated.&Dark.Fruity :colo fruity<CR> |
|||
amenu T&hemes.De&precated.&Dark.Leo :colo leo<CR> |
|||
amenu T&hemes.De&precated.&Dark.Matrix :colo matrix<CR> |
|||
amenu T&hemes.De&precated.&Dark.Metacosm :colo metacosm<CR> |
|||
amenu T&hemes.De&precated.&Dark.Northland :colo northland<CR> |
|||
amenu T&hemes.De&precated.&Dark.Railscasts2 :colo railscasts2<CR> |
|||
amenu T&hemes.De&precated.&Dark.Synic :colo synic<CR> |
|||
amenu T&hemes.De&precated.&Dark.Wombat256 :colo wombat256<CR> |
|||
amenu T&hemes.De&precated.&Dark.Xoria256 :colo xoria256<CR> |
|||
amenu T&hemes.De&precated.&Light.Autumn2 :colo autumn2<CR> |
|||
amenu T&hemes.De&precated.&Light.Buttercream :colo buttercream<CR> |
|||
amenu T&hemes.De&precated.&Light.Fine_blue :colo fine_blue<CR> |
|||
amenu T&hemes.De&precated.&Light.Impact :colo impact<CR> |
|||
amenu T&hemes.De&precated.&Light.Oceanlight :colo oceanlight<CR> |
|||
amenu T&hemes.De&precated.&Light.Print_bw :colo print_bw<CR> |
|||
amenu T&hemes.De&precated.&Light.Pyte :colo pyte<CR> |
|||
amenu T&hemes.De&precated.&Light.Spring :colo spring<CR> |
|||
amenu T&hemes.De&precated.&Light.Winter :colo winter<CR> |
|||
amenu T&hemes.De&precated.&Other.Astronaut :colo astronaut<CR> |
|||
amenu T&hemes.De&precated.&Other.Bluegreen :colo bluegreen<CR> |
|||
amenu T&hemes.De&precated.&Other.Navajo :colo navajo<CR> |
|||
amenu T&hemes.De&precated.&Other.Olive :colo olive<CR> |
|||
amenu T&hemes.De&precated.&Other.Tabula :colo tabula<CR> |
|||
amenu T&hemes.De&precated.&Other.Xemacs :colo xemacs<CR> |
|||
|
|||
" Themepack Themes |
|||
amenu T&hemes.&Dark.Asu1dark :colo asu1dark<CR> |
|||
amenu T&hemes.&Dark.Brookstream :colo brookstream<CR> |
|||
amenu T&hemes.&Dark.Calmar256-dark :colo calmar256-dark<CR> |
|||
amenu T&hemes.&Dark.Camo :colo camo<CR> |
|||
amenu T&hemes.&Dark.Candy :colo candy<CR> |
|||
amenu T&hemes.&Dark.Candycode :colo candycode<CR> |
|||
amenu T&hemes.&Dark.Dante :colo dante<CR> |
|||
amenu T&hemes.&Dark.Darkspectrum :colo darkspectrum<CR> |
|||
amenu T&hemes.&Dark.Desert256 :colo desert256<CR> |
|||
amenu T&hemes.&Dark.DesertEx :colo desertEx<CR> |
|||
amenu T&hemes.&Dark.Dusk :colo dusk<CR> |
|||
amenu T&hemes.&Dark.Earendel :colo earendel<CR> |
|||
amenu T&hemes.&Dark.Ekvoli :colo ekvoli<CR> |
|||
amenu T&hemes.&Dark.Fnaqevan :colo fnaqevan<CR> |
|||
amenu T&hemes.&Dark.Freya :colo freya<CR> |
|||
amenu T&hemes.&Dark.Golden :colo golden<CR> |
|||
amenu T&hemes.&Dark.Inkpot :colo inkpot<CR> |
|||
amenu T&hemes.&Dark.Jellybeans :colo jellybeans<CR> |
|||
amenu T&hemes.&Dark.Lucius :colo lucius<CR> |
|||
amenu T&hemes.&Dark.Manxome :colo manxome<CR> |
|||
amenu T&hemes.&Dark.Moria :colo moria<CR> |
|||
amenu T&hemes.&Dark.Motus :colo motus<CR> |
|||
amenu T&hemes.&Dark.Neon :colo neon<CR> |
|||
amenu T&hemes.&Dark.Neverness :colo neverness<CR> |
|||
amenu T&hemes.&Dark.Oceanblack :colo oceanblack<CR> |
|||
amenu T&hemes.&Dark.Railscasts :colo railscasts<CR> |
|||
amenu T&hemes.&Dark.Rdark :colo rdark<CR> |
|||
amenu T&hemes.&Dark.Relaxedgreen :colo relaxedgreen<CR> |
|||
amenu T&hemes.&Dark.Rootwater :colo rootwater<CR> |
|||
amenu T&hemes.&Dark.Tango :colo tango<CR> |
|||
amenu T&hemes.&Dark.Tango2 :colo tango2<CR> |
|||
amenu T&hemes.&Dark.Vibrantink :colo vibrantink<CR> |
|||
amenu T&hemes.&Dark.Vividchalk :colo vividchalk<CR> |
|||
amenu T&hemes.&Dark.Wombat :colo wombat<CR> |
|||
amenu T&hemes.&Dark.Zenburn :colo zenburn<CR> |
|||
|
|||
amenu T&hemes.&Light.Autumn :colo autumn<CR> |
|||
amenu T&hemes.&Light.Autumnleaf :colo autumnleaf<CR> |
|||
amenu T&hemes.&Light.Baycomb :colo baycomb<CR> |
|||
amenu T&hemes.&Light.Biogoo :colo biogoo<CR> |
|||
amenu T&hemes.&Light.Calmar256-light :colo calmar256-light<CR> |
|||
amenu T&hemes.&Light.Chela_light :colo chela_light<CR> |
|||
amenu T&hemes.&Light.Dawn :colo dawn<CR> |
|||
amenu T&hemes.&Light.Eclipse :colo eclipse<CR> |
|||
amenu T&hemes.&Light.Fog :colo fog<CR> |
|||
amenu T&hemes.&Light.Fruit :colo fruit<CR> |
|||
amenu T&hemes.&Light.Habilight :colo habilight<CR> |
|||
amenu T&hemes.&Light.Ironman :colo ironman<CR> |
|||
amenu T&hemes.&Light.Martin_krischik :colo martin_krischik<CR> |
|||
amenu T&hemes.&Light.Nuvola :colo nuvola<CR> |
|||
amenu T&hemes.&Light.PapayaWhip :colo PapayaWhip<CR> |
|||
amenu T&hemes.&Light.Sienna :colo sienna<CR> |
|||
amenu T&hemes.&Light.Simpleandfriendly :colo simpleandfriendly<CR> |
|||
amenu T&hemes.&Light.Tolerable :colo tolerable<CR> |
|||
amenu T&hemes.&Light.Vc :colo vc<CR> |
|||
|
|||
amenu T&hemes.&Other.Aiseered :colo aiseered<CR> |
|||
amenu T&hemes.&Other.Borland :colo borland<CR> |
|||
amenu T&hemes.&Other.Breeze :colo breeze<CR> |
|||
amenu T&hemes.&Other.Chocolateliquor :colo chocolateliquor<CR> |
|||
amenu T&hemes.&Other.Darkblue2 :colo darkblue2<CR> |
|||
amenu T&hemes.&Other.Darkslategray :colo darkslategray<CR> |
|||
amenu T&hemes.&Other.Marklar :colo marklar<CR> |
|||
amenu T&hemes.&Other.Navajo-night :colo navajo-night<CR> |
|||
amenu T&hemes.&Other.Night :colo night<CR> |
|||
amenu T&hemes.&Other.Oceandeep :colo oceandeep<CR> |
|||
amenu T&hemes.&Other.Peaksea :colo peaksea<CR> |
|||
amenu T&hemes.&Other.Sea :colo sea<CR> |
|||
amenu T&hemes.&Other.Settlemyer :colo settlemyer<CR> |
@ -1,128 +0,0 @@ |
|||
" Vim syntax file |
|||
" Language: conkyrc |
|||
" Author: Ciaran McCreesh <ciaranm@gentoo.org> |
|||
" Version: 20050923 |
|||
" Copyright: Copyright (c) 2005 Ciaran McCreesh |
|||
" Licence: You may redistribute this under the same terms as Vim itself |
|||
|
|||
if exists("b:current_syntax") |
|||
finish |
|||
endif |
|||
|
|||
syn region ConkyrcComment start=/^\s*#/ end=/$/ |
|||
|
|||
syn keyword ConkyrcSetting |
|||
\ alignment append_file background border_inner_margin border_outer_margin |
|||
\ border_width color0 color1 color2 color3 color4 color5 color6 color7 color8 color9 |
|||
\ cpu_avg_samples default_bar_size default_color default_gauge_size |
|||
\ default_graph_size default_outline_color default_shade_color |
|||
\ disable_auto_reload diskio_avg_samples display double_buffer draw_borders |
|||
\ draw_graph_borders draw_outline draw_shades extra_newline font |
|||
\ format_human_readable gap_x gap_y hddtemp_host hddtemp_port if_up_strictness |
|||
\ imap imlib_cache_flush_interval imlib_cache_size lua_draw_hook_post |
|||
\ lua_draw_hook_pre lua_load lua_shutdown_hook lua_startup_hook mail_spool |
|||
\ max_port_monitor_connections max_specials max_text_width max_user_text maximum_width |
|||
\ minimum_size mpd_host mpd_port music_player net_avg_samples no_buffers nvidia_display |
|||
\ out_to_console out_to_ncurses out_to_stderr out_to_x override_utf8_locale |
|||
\ overwrite_file own_window own_window_class own_window_colour own_window_hints |
|||
\ own_window_title own_window_argb_visual own_window_argb_value |
|||
\ own_window_transparent own_window_type pad_percents pop3 short_units |
|||
\ show_graph_range show_graph_scale stippled_borders temperature_unit |
|||
\ template0 template1 template2 template3 template4 template5 template6 |
|||
\ template7 template8 template9 text_buffer_size times_in_seconds top_cpu_separate |
|||
\ top_name_width total_run_times update_interval update_interval_on_battery |
|||
\ uppercase use_spacer use_xft xftalpha xftfont |
|||
|
|||
syn keyword ConkyrcConstant yes no top_left top_right bottom_left bottom_right none |
|||
|
|||
syn match ConkyrcNumber /\S\@<!\d\+\(\.\d\+\)\?\(\S\@!\|}\@=\)/ |
|||
\ nextgroup=ConkyrcNumber,ConkyrcColour skipwhite |
|||
syn match ConkyrcColour /\S\@<!#[a-fA-F0-9]\{6\}\(\S\@!\|}\@=\)/ |
|||
\ nextgroup=ConkyrcNumber,ConkyrcColour skipwhite |
|||
|
|||
syn region ConkyrcText start=/^TEXT$/ end=/\%$/ contains=ConkyrcVar,ConkyrcComment |
|||
|
|||
syn region ConkyrcVar start=/\${/ end=/}/ contained contains=ConkyrcVarStuff,ConkyrcVar |
|||
syn region ConkyrcVar start=/\$\w\@=/ end=/\W\@=\|$/ contained contains=ConkyrcVarName |
|||
|
|||
syn match ConkyrcVarStuff /{\@<=/ms=s contained nextgroup=ConkyrcVarName |
|||
|
|||
syn keyword ConkyrcVarName contained nextgroup=ConkyrcNumber,ConkyrcColour skipwhite |
|||
\ acpiacadapter acpifan acpitemp addr addrs adt746xcpu adt746xfan alignc |
|||
\ alignr apcupsd apcupsd_cable apcupsd_charge apcupsd_lastxfer |
|||
\ apcupsd_linev apcupsd_load apcupsd_loadbar apcupsd_loadgauge |
|||
\ apcupsd_loadgraph apcupsd_model apcupsd_name apcupsd_status |
|||
\ apcupsd_temp apcupsd_timeleft apcupsd_upsmode apm_adapter |
|||
\ apm_battery_life apm_battery_time audacious_bar audacious_bitrate |
|||
\ audacious_channels audacious_filename audacious_frequency |
|||
\ audacious_length audacious_length_seconds audacious_main_volume |
|||
\ audacious_playlist_length audacious_playlist_positio |
|||
\ audacious_position audacious_position_seconds audacious_status |
|||
\ audacious_title battery battery_bar battery_percent battery_short |
|||
\ battery_time blink bmpx_album bmpx_artist bmpx_bitrate bmpx_title |
|||
\ bmpx_track bmpx_uri buffers cached cmdline_to_pid color combine |
|||
\ conky_build_arch conky_build_date conky_version cpu cpubar cpugauge |
|||
\ cpugraph curl desktop desktop_name desktop_number disk_protect diskio |
|||
\ diskio_read diskio_write diskiograph diskiograph_read |
|||
\ diskiograph_write downspeed downspeedf downspeedgraph draft_mails else |
|||
\ endif entropy_avail entropy_bar entropy_perc entropy_poolsize eval eve |
|||
\ exec execbar execgauge execgraph execi execibar execigauge execigraph |
|||
\ execp execpi flagged_mails font format_time forwarded_mails freq |
|||
\ freq_g fs_bar fs_bar_free fs_free fs_free_perc fs_size fs_type fs_used |
|||
\ fs_used_perc goto gw_iface gw_ip hddtemp head hr hwmon i2c |
|||
\ i8k_ac_status i8k_bios i8k_buttons_status i8k_cpu_temp |
|||
\ i8k_left_fan_rpm i8k_left_fan_status i8k_right_fan_rpm |
|||
\ i8k_right_fan_status i8k_serial i8k_version ibm_brightness ibm_fan |
|||
\ ibm_temps ibm_volume iconv_start iconv_stop if_empty if_existing if_gw |
|||
\ if_match if_mixer_mute if_mounted if_mpd_playing if_running |
|||
\ if_smapi_bat_installed if_up if_updatenr if_xmms2_connected image |
|||
\ imap_messages imap_unseen include ioscheduler kernel laptop_mode lines |
|||
\ loadavg loadgraph lua lua_bar lua_gauge lua_graph lua_parse machine |
|||
\ mails mboxscan mem membar memeasyfree memfree memgauge memgraph memmax |
|||
\ memperc mixer mixerbar mixerl mixerlbar mixerr mixerrbar moc_album |
|||
\ moc_artist moc_bitrate moc_curtime moc_file moc_rate moc_song |
|||
\ moc_state moc_timeleft moc_title moc_totaltime monitor monitor_number |
|||
\ mpd_album mpd_artist mpd_bar mpd_bitrate mpd_date mpd_elapsed mpd_file |
|||
\ mpd_length mpd_name mpd_percent mpd_random mpd_repeat mpd_smart |
|||
\ mpd_status mpd_title mpd_track mpd_vol nameserver new_mails nodename |
|||
\ nodename_short nvidia offset outlinecolor pb_battery pid_chroot |
|||
\ pid_cmdline pid_cwd pid_environ pid_environ_list pid_exe pid_nice |
|||
\ pid_openfiles pid_parent pid_priority pid_read pid_state |
|||
\ pid_state_short pid_stderr pid_stdin pid_stdout pid_threads |
|||
\ pid_thread_list pid_time_kernelmode pid_time_usermode pid_time pid_uid |
|||
\ pid_euid pid_suid pid_fsuid pid_gid pid_egid pid_sgid pid_fsgid |
|||
\ pid_vmpeak pid_vmsize pid_vmlck pid_vmhwm pid_vmrss pid_vmdata |
|||
\ pid_vmstk pid_vmexe pid_vmlib pid_vmpte pid_write platform pop3_unseen |
|||
\ pop3_used pre_exec processes read_tcp replied_mails rss |
|||
\ running_processes running_threads scroll seen_mails shadecolor smapi |
|||
\ smapi_bat_bar smapi_bat_perc smapi_bat_power smapi_bat_temp |
|||
\ sony_fanspeed stippled_hr swap swapbar swapfree swapmax swapperc |
|||
\ sysname tab tail tcp_portmon texeci threads time to_bytes |
|||
\ top top_io top_mem top_time totaldown totalup trashed_mails tztime |
|||
\ gid_name uid_name unflagged_mails unforwarded_mails unreplied_mails |
|||
\ unseen_mails updates upspeed upspeedf upspeedgraph uptime uptime_short |
|||
\ user_names user_number user_terms user_times user_time utime voffset |
|||
\ voltage_mv voltage_v weather weather_forecast wireless_ap |
|||
\ wireless_bitrate wireless_essid wireless_link_bar wireless_link_qual |
|||
\ wireless_link_qual_max wireless_link_qual_percercents wireless_mode |
|||
\ words xmms2_album xmms2_artist xmms2_bar xmms2_bitrate xmms2_comment |
|||
\ xmms2_date xmms2_duration xmms2_elapsed xmms2_genre xmms2_id |
|||
\ xmms2_percent xmms2_playlist xmms2_size xmms2_smart xmms2_status |
|||
\ xmms2_timesplayed xmms2_title xmms2_tracknr xmms2_url |
|||
\ color0 color1 color2 color3 color4 color5 color6 color7 color8 color9 |
|||
\ template0 template1 template2 template3 template4 template5 template6 |
|||
\ template7 template8 template9 |
|||
|
|||
|
|||
hi def link ConkyrcComment Comment |
|||
hi def link ConkyrcSetting Keyword |
|||
hi def link ConkyrcConstant Constant |
|||
hi def link ConkyrcNumber Number |
|||
hi def link ConkyrcColour Special |
|||
|
|||
hi def link ConkyrcText String |
|||
hi def link ConkyrcVar Identifier |
|||
hi def link ConkyrcVarName Keyword |
|||
|
|||
let b:current_syntax = "conkyrc" |
|||
|
@ -1,108 +0,0 @@ |
|||
" Vim syntax file |
|||
" Language: HTML (version 5) |
|||
" Maintainer: Rodrigo Machado <rcmachado@gmail.com> |
|||
" URL: http://rm.blog.br/vim/syntax/html.vim |
|||
" Last Change: 2009 Aug 19 |
|||
" License: Public domain |
|||
" (but let me know if you like :) ) |
|||
" |
|||
" Note: This file just adds the new tags from HTML 5 |
|||
" and don't replace default html.vim syntax file |
|||
" |
|||
" Modified: othree <othree@gmail.com> |
|||
" Changes: update to Draft 13 January 2011 |
|||
" add complete new attributes |
|||
" add microdata Attributes |
|||
" add bdi element |
|||
" Modified: htdebeer <H.T.de.Beer@gmail.com> |
|||
" Changes: add common SVG elements and attributes for inline SVG |
|||
|
|||
" HTML 5 tags |
|||
syn keyword htmlTagName contained article aside audio canvas command |
|||
syn keyword htmlTagName contained datalist details dialog embed figcaption figure footer |
|||
syn keyword htmlTagName contained header hgroup keygen mark meter menu nav output |
|||
syn keyword htmlTagName contained progress time ruby rt rp section source summary time track video |
|||
syn keyword htmlTagName contained wbr bdi |
|||
|
|||
" SVG tags |
|||
" http://www.w3.org/TR/SVG/ |
|||
" as found in http://www.w3.org/TR/SVG/eltindex.html |
|||
syn keyword htmlTagName contained svg |
|||
syn keyword htmlTagName contained altGlyph altGlyphDef altGlyphItem |
|||
syn keyword htmlTagName contained animate animateColor animateMotion animateTransform |
|||
syn keyword htmlTagName contained circle ellipse rect line polyline polygon image path |
|||
syn keyword htmlTagName contained clipPath color-profile cursor |
|||
syn keyword htmlTagName contained defs desc g symbol view use switch foreignObject |
|||
syn keyword htmlTagName contained filter feBlend feColorMatrix feComponentTransfer feComposite feConvolveMatrix feDiffuseLighting feDisplacementMap feDistantLight feFlood feFuncA feFuncB feFuncG feFuncR feGaussianBlur feImage feMerge feMergeNode feMorphology feOffset fePointLight feSpecularLighting feSpotLight feTile feTurbulence |
|||
syn keyword htmlTagName contained font font-face font-face-format font-face-name font-face-src font-face-uri |
|||
syn keyword htmlTagName contained glyph glyphRef hkern |
|||
syn keyword htmlTagName contained linearGradient marker mask pattern radialGradient set stop |
|||
syn keyword htmlTagName contained missing-glyph mpath |
|||
syn keyword htmlTagName contained text textPath tref tspan vkern |
|||
|
|||
" HTML 5 arguments |
|||
" Core Attributes |
|||
syn keyword htmlArg contained accesskey class contenteditable contextmenu dir |
|||
syn keyword htmlArg contained draggable hidden id lang spellcheck style tabindex title translate |
|||
" Event-handler Attributes |
|||
syn keyword htmlArg contained onabort onblur oncanplay oncanplaythrough onchange |
|||
syn keyword htmlArg contained onclick oncontextmenu ondblclick ondrag ondragend ondragenter ondragleave ondragover |
|||
syn keyword htmlArg contained ondragstart ondrop ondurationchange onemptied onended onerror onfocus onformchange |
|||
syn keyword htmlArg contained onforminput oninput oninvalid onkeydown onkeypress onkeyup onload onloadeddata |
|||
syn keyword htmlArg contained onloadedmetadata onloadstart onmousedown onmousemove onmouseout onmouseover onmouseup |
|||
syn keyword htmlArg contained onmousewheel onpause onplay onplaying onprogress onratechange onreadystatechange |
|||
syn keyword htmlArg contained onscroll onseeked onseeking onselect onshow onstalled onsubmit onsuspend ontimeupdate |
|||
syn keyword htmlArg contained onvolumechange onwaiting |
|||
" XML Attributes |
|||
syn keyword htmlArg contained xml:lang xml:space xml:base xmlns |
|||
" new features |
|||
" <body> |
|||
syn keyword htmlArg contained onafterprint onbeforeprint onbeforeunload onblur onerror onfocus onhashchange onload |
|||
syn keyword htmlArg contained onmessage onoffline ononline onpopstate onredo onresize onstorage onundo onunload |
|||
" <video>, <audio>, <source>, <track> |
|||
syn keyword htmlArg contained autoplay preload controls loop poster media kind charset srclang track |
|||
" <form>, <input>, <button> |
|||
syn keyword htmlArg contained form autocomplete autofocus list min max step |
|||
syn keyword htmlArg contained formaction autofocus formenctype formmethod formtarget formnovalidate |
|||
syn keyword htmlArg contained required placeholder |
|||
" <command>, <details>, <time> |
|||
syn keyword htmlArg contained label icon open datetime pubdate |
|||
" <script> |
|||
syn keyword htmlArg contained async |
|||
|
|||
" Custom Data Attributes |
|||
" http://dev.w3.org/html5/spec/elements.html#embedding-custom-non-visible-data |
|||
syn match htmlArg "\<\(data\(\-[a-z]\+\)\+\)\=\>" contained |
|||
|
|||
" Microdata |
|||
" http://dev.w3.org/html5/md/ |
|||
syn keyword htmlArg contained itemid itemscope itemtype itemprop itemref |
|||
|
|||
" SVG |
|||
" http://www.w3.org/TR/SVG/ |
|||
" Some common attributes from http://www.w3.org/TR/SVG/attindex.html |
|||
syn keyword htmlArg contained accent-height accumulate additive alphabetic amplitude arabic-form ascent attributeName attributeType azimuth |
|||
syn keyword htmlArg contained baseFrequency baseProfile bbox begin bias by |
|||
syn keyword htmlArg contained calcMode cap-height class clipPathUnits contentScriptType contentStyleType cx cy |
|||
syn keyword htmlArg contained d descent diffuseConstant divisor dur dx dy |
|||
syn keyword htmlArg contained edgeMode elevation end exponent externalResourcesRequired |
|||
syn keyword htmlArg contained fill filterRes filterUnits font-family font-size font-stretch font-style font-variant font-weight format format from fx fy |
|||
syn keyword htmlArg contained g1 g2 glyph-name glyphRef gradientTransform gradientUnits |
|||
syn keyword htmlArg contained hanging height horiz-adv-x horiz-origin-y |
|||
syn keyword htmlArg contained id ideographic in in2 intercept |
|||
syn keyword htmlArg contained k k1 k2 k3 k4 kernelMatrix kernelUnitLength keyPoints keySplines keyTimes |
|||
syn keyword htmlArg contained lang lengthAdjust limitingConeAngle local |
|||
syn keyword htmlArg contained markerHeight markerUnits markerWidth maskContentUnits maskUnits mathematical max media method min mode name |
|||
syn keyword htmlArg contained numOctaves |
|||
syn keyword htmlArg contained offset offset onabort onactivate onbegin onclick onend onerror onfocusin onfocusout onload onload onmousedown onmousemove onmouseout onmouseover onmouseup onrepeat onresize onscroll onunload onzoom operator order orient orientation origin overline-position overline-thickness |
|||
syn keyword htmlArg contained panose-1 path pathLength patternContentUnits patternTransform patternUnits points pointsAtX pointsAtY pointsAtZ preserveAlpha preserveAspectRatio primitiveUnits |
|||
syn keyword htmlArg contained r radius refX refY rendering-intent repeatCount repeatDur requiredExtensions requiredFeatures restart result rotate rx ry |
|||
syn keyword htmlArg contained scale seed slope spacing specularConstant specularExponent spreadMethod startOffset stdDeviation stemh stemv stitchTiles strikethrough-position strikethrough-thickness string surfaceScale systemLanguage |
|||
syn keyword htmlArg contained tableValues target targetX targetY textLength title to transform type u |
|||
syn keyword htmlArg contained 1 u2 underline-position underline-thickness unicode unicode-range units-per-em |
|||
syn keyword htmlArg contained v-alphabetic v-hanging v-ideographic v-mathematical values version vert-adv-y vert-origin-x vert-origin-y viewBox viewTarget |
|||
syn keyword htmlArg contained width widths |
|||
syn keyword htmlArg contained x x-height x1 x2 xChannelSelector xlink:actuate xlink:actuate xlink:arcrole xlink:href xlink:role xlink:show xlink:show xlink:title xlink:type xml:base xml:lang xml:space |
|||
syn keyword htmlArg contained y y1 y2 yChannelSelector |
|||
syn keyword htmlArg contained z zoomAndPan |
|||
syn keyword htmlArg contained alignment-baseline baseline-shift clip-path clip-rule clip color-interpolation-filters color-interpolation color-profile color-rendering color cursor direction display dominant-baseline enable-background fill-opacity fill-rule fill filter flood-color flood-opacity font-family font-size-adjust font-size font-stretch font-style font-variant font-weight glyph-orientation-horizontal glyph-orientation-vertical image-rendering kerning letter-spacing lighting-color marker-end marker-mid marker-start mask opacity overflow pointer-events shape-rendering stop-color stop-opacity stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width stroke text-anchor text-decoration text-rendering unicode-bidi visibility word-spacing writing-mode |
@ -1,35 +0,0 @@ |
|||
" Vim syntax file |
|||
" Language: WAI-ARIA |
|||
" Maintainer: othree <othree@gmail.com> |
|||
" URL: http://github.com/othree/html5-syntax.vim |
|||
" Last Change: 2010-09-25 |
|||
" License: MIT |
|||
" Changes: update to Draft 16 September 2010 |
|||
|
|||
" WAI-ARIA States and Properties |
|||
" http://www.w3.org/TR/wai-aria/states_and_properties |
|||
syn keyword htmlArg contained role |
|||
|
|||
" Global States and Properties |
|||
syn match htmlArg contained "\<aria-\(atomic\|busy\|controls\|describedby\)\>" |
|||
syn match htmlArg contained "\<aria-\(disabled\|dropeffect\|flowto\|grabbed\)\>" |
|||
syn match htmlArg contained "\<aria-\(haspopup\|hidden\|invalid\|label\)\>" |
|||
syn match htmlArg contained "\<aria-\(labelledby\|live\|owns\|relevant\)\>" |
|||
|
|||
" Widget Attributes |
|||
syn match htmlArg contained "\<aria-\(autocomplete\|checked\|disabled\|expanded\)\>" |
|||
syn match htmlArg contained "\<aria-\(haspopup\|hidden\|invalid\|label\)\>" |
|||
syn match htmlArg contained "\<aria-\(level\|multiline\|multiselectable\|orientation\)\>" |
|||
syn match htmlArg contained "\<aria-\(pressed\|readonly\|required\|selected\)\>" |
|||
syn match htmlArg contained "\<aria-\(sort\|valuemax\|valuemin\|valuenow\|valuetext\|\)\>" |
|||
|
|||
" Live Region Attributes |
|||
syn match htmlArg contained "\<aria-\(atomic\|busy\|live\|relevant\|\)\>" |
|||
|
|||
" Drag-and-Drop attributes |
|||
syn match htmlArg contained "\<aria-\(dropeffect\|grabbed\)\>" |
|||
|
|||
" Relationship Attributes |
|||
syn match htmlArg contained "\<aria-\(activedescendant\|controls\|describedby\|flowto\|\)\>" |
|||
syn match htmlArg contained "\<aria-\(labelledby\|owns\|posinset\|setsize\|\)\>" |
|||
|
@ -1,11 +0,0 @@ |
|||
" Vim syntax file |
|||
" Language: RDFa |
|||
" Maintainer: othree <othree@gmail.com> |
|||
" URL: http://github.com/othree/html5-syntax.vim |
|||
" Last Change: 2012-06-08 |
|||
" License: MIT |
|||
" Changes: update to Rec 07 June 2012 |
|||
|
|||
" RDFa |
|||
" http://www.w3.org/TR/rdfa-syntax/#s_syntax |
|||
syn keyword htmlArg contained about content datatype href inlist prefix property rel resource rev src typeof vocab |
@ -1,43 +0,0 @@ |
|||
" Vim syntax file |
|||
" Language: HTML5 New Stuff |
|||
" Maintainer: othree <othree@gmail.com> |
|||
" URL: http://github.com/othree/html5-syntax.vim |
|||
" Last Change: 2011-05-27 |
|||
" License: MIT |
|||
" Changes: |
|||
|
|||
syn keyword javaScriptHtmlEvents onabort onblur oncanplay oncanplaythrough onchange |
|||
syn keyword javaScriptHtmlEvents onclick oncontextmenu ondblclick ondrag ondragend ondragenter ondragleave ondragover |
|||
syn keyword javaScriptHtmlEvents ondragstart ondrop ondurationchange onemptied onended onerror onfocus onformchange |
|||
syn keyword javaScriptHtmlEvents onforminput oninput oninvalid onkeydown onkeypress onkeyup onload onloadeddata |
|||
syn keyword javaScriptHtmlEvents onloadedmetadata onloadstart onmousedown onmousemove onmouseout onmouseover onmouseup |
|||
syn keyword javaScriptHtmlEvents onmousewheel onpause onplay onplaying onprogress onratechange onreadystatechange |
|||
syn keyword javaScriptHtmlEvents onscroll onseeked onseeking onselect onshow onstalled onsubmit onsuspend ontimeupdate |
|||
syn keyword javaScriptHtmlEvents onvolumechange onwaiting |
|||
|
|||
" <body> |
|||
syn keyword javaScriptHtmlEvents onafterprint onbeforeprint onbeforeunload onblur onerror onfocus onhashchange onload |
|||
syn keyword javaScriptHtmlEvents onmessage onoffline ononline onpopstate onredo onresize onstorage onundo onunload |
|||
|
|||
" Media Controller |
|||
syn keyword javaScriptDomElemAttrs buffered seekable duration currentTime paused |
|||
syn keyword javaScriptDomElemAttrs played defaultPlaybackRate playbackRate volume muted |
|||
syn keyword javaScriptDomElemAttrs mediaGroup |
|||
syn keyword javaScriptDomElemFuncs load play pause |
|||
|
|||
syn keyword javaScriptHtmlEvents oncanplay oncanplaythrough ondurationchange onemptied |
|||
syn keyword javaScriptHtmlEvents onloadeddata onloadedmetadata onloadstart onpause onplay onplaying onratechange |
|||
syn keyword javaScriptHtmlEvents ontimeupdate onvolumechange onwaiting |
|||
|
|||
" <audio>/<video> |
|||
syn keyword javaScriptDomElemAttrs error src currentSrc networkState preload buffered readyState seeking |
|||
syn keyword javaScriptDomElemAttrs currentTime initialTime duration startOffsetTime paused defaultPlaybackRate playbackRate played |
|||
syn keyword javaScriptDomElemAttrs seekable ended autoplay loop controls volume muted defaltMuted audioTracks videoTracks textTracks |
|||
syn keyword javaScriptDomElemFuncs load addTextTrack |
|||
|
|||
" <video> |
|||
" syn keyword javaScriptDomElemAttrs width height |
|||
syn keyword javaScriptDomElemAttrs videoWidth videoHeight poster |
|||
|
|||
" drag and drop |
|||
syn keyword javaScriptDomElemAttrs onDragStart onDragEnd onDragEnter onDragLeave onDragOver onDrag onDrop draggable dropzone |
@ -0,0 +1,21 @@ |
|||
XXkb.image.path: /usr/home/cyrax/.icons/flags |
|||
XXkb.group.base: 1 |
|||
XXkb.group.alt: 2 |
|||
XXkb.mainwindow.enable: yes |
|||
XXkb.mainwindow.type: tray |
|||
XXkb.mainwindow.image.1: us.svg |
|||
XXkb.mainwindow.image.2: ru.svg |
|||
XXkb.mainwindow.image.3: |
|||
XXkb.mainwindow.image.4: |
|||
XXkb.mainwindow.appicon: no |
|||
XXkb.mainwindow.geometry: 24x24+0+0 |
|||
XXkb.mainwindow.in_tray: yes |
|||
XXkb.button.enable: no |
|||
XXkb.controls.add_when_start: yes |
|||
XXkb.controls.add_when_create: yes |
|||
XXkb.controls.add_when_change: no |
|||
XXkb.controls.focusout: no |
|||
#XXkb.mainwindow.xpm.1: en15.xpm |
|||
#XXkb.mainwindow.xpm.2: ru15.xpm |
|||
XXkb.mainwindow.label.enable: no |
|||
|
Loading…
Reference in new issue