this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pre-commit run -a the whole repo

Mostly fixes line endings, some formatting, etc.

+102 -154
+25 -19
.bashrc
··· 1 + # shellcheck shell=bash 2 + # shellcheck disable=SC1091 3 + 1 4 # Source global definitions 2 5 if [ -f /etc/bashrc ]; then 3 6 . /etc/bashrc ··· 13 16 umask 0002 14 17 15 18 # alias various commands 16 - if [ -r $HOME/.bashrc.aliases ]; then 17 - source $HOME/.bashrc.aliases 19 + if [ -r "$HOME/.bashrc.aliases" ]; then 20 + source "$HOME/.bashrc.aliases" 18 21 fi 19 22 20 23 # add bash completions 21 - if [ -r $HOME/.bashrc.completions ]; then 22 - source $HOME/.bashrc.completions 24 + if [ -r "$HOME/.bashrc.completions" ]; then 25 + source "$HOME/.bashrc.completions" 23 26 fi 24 27 25 28 # "$(tput sitm)" is probably safest here, but actually it seems easier to just ··· 31 34 RED='\[\e[0;31m\]' 32 35 MAG='\[\e[0;35m\]' 33 36 ENDCOL='\[\e[0m\]' 37 + # shellcheck disable=SC2016 34 38 SUCCESS='$(if [ $? -eq 0 ]; then printf "'"$GRE"'"; else printf "'"$RED"'"; fi)' 35 39 36 40 if declare -F __git_ps1 >/dev/null; then 37 41 PROMPT_COMMAND='__git_ps1' 38 42 PROMPT_COMMAND+=' "${MAG}${DOCKER_NAME:+(${DOCKER_NAME}) }${ENDCOL}[\u@\h] ${BLU}\W${ENDCOL} "' 39 43 PROMPT_COMMAND+=' "\n${SUCCESS}\$${ENDCOL} "' 44 + # shellcheck disable=SC2089 40 45 PROMPT_COMMAND+=' "${YEL}(%s)${ENDCOL}"' 46 + # shellcheck disable=SC2090 41 47 export PROMPT_COMMAND 42 48 else 43 49 export PS1="${MAG}${DOCKER_NAME:+(${DOCKER_NAME}) }${ENDCOL}[\u@\h] ${BLU}\W${ENDCOL}\n${SUCCESS}\$${ENDCOL} " ··· 58 64 if [ "$MAC_OS" = true ]; then 59 65 # (macOS) set up LS colors 60 66 export CLICOLOR=1 61 - dir=Gx # bold cyan/default 62 - symlink=Fx # bold magenta/default 63 - sock=Cx # bold green/default 64 - pipe=Dx # bold yellow/default 65 - exe=Bx # bold red/default 66 - block=eg # blue/cyan 67 - char=ed # blue/yellow 68 - setuid=ab # black/red 69 - setguid=ag # black/cyan 70 - sticky=ac # black/green 71 - nostick=ed # blue/yellow 67 + dir=Gx # bold cyan/default 68 + symlink=Fx # bold magenta/default 69 + sock=Cx # bold green/default 70 + pipe=Dx # bold yellow/default 71 + exe=Bx # bold red/default 72 + block=eg # blue/cyan 73 + char="ed" # blue/yellow 74 + setuid=ab # black/red 75 + setguid=ag # black/cyan 76 + sticky=ac # black/green 77 + nostick="ed" # blue/yellow 72 78 73 79 export LSCOLORS=$dir$symlink$sock$pipe$exe$block$char$setuid$setguid$sticky$nostick 74 80 fi ··· 96 102 [ -s "$NVM_DIR/nvm.sh" ] && source "$NVM_DIR/nvm.sh" # This loads nvm 97 103 [ -s "$NVM_DIR/bash_completion" ] && source "$NVM_DIR/bash_completion" # This loads nvm bash_completion 98 104 99 - if [ -f $HOME/bin/git-completion.bash ]; then 100 - source $HOME/bin/git-completion.bash 105 + if [ -f "$HOME/bin/git-completion.bash" ]; then 106 + source "$HOME/bin/git-completion.bash" 101 107 fi 102 108 103 - if [ -f $HOME/bin/git-prompt.sh ]; then 104 - source $HOME/bin/git-prompt.sh 109 + if [ -f "$HOME/bin/git-prompt.sh" ]; then 110 + source "$HOME/bin/git-prompt.sh" 105 111 PS1=${DOCKER_NAME:+(${DOCKER_NAME})}'[\u@\h \W$(__git_ps1 " (%s)")]\$ ' 106 112 fi 107 113
-1
.config/Code/User/snippets/python.json
··· 1 1 {} 2 -
+1 -1
.config/btt/Default.bttpreset
··· 1889 1889 ] 1890 1890 } 1891 1891 ] 1892 - } 1892 + }
+1 -1
.config/btt/GoldenChaos-BTT 3.563.bttpreset
··· 34595 34595 "BTTPresetSnapAreas" : [ 34596 34596 34597 34597 ] 34598 - } 34598 + }
-1
.config/duti
··· 65 65 # https://stackoverflow.com/questions/8003919/are-dynamic-utis-stable 66 66 com.microsoft.VSCode dyn.ah62d4rv4ge80e8xq all 67 67 com.microsoft.VSCode dyn.ah62d4rv4ge80w5xm all 68 -
+1 -1
.config/fish/conf.d/15-iterm2_hostname.fish
··· 1 1 # Set the iterm2_hostname ahead of time to make startup faster. 2 - # See ./20-iterm2_shell_integration.fish 2 + # See ./20-iterm2_shell_integration.fish 3 3 set -g iterm2_hostname $hostname
-1
.config/fish/config.fish
··· 1 -
-42
.config/fish/functions/fish_check_saved_functions.fish
··· 1 - function fish_check_saved_functions --description 'check syntax of saved files' 2 - echo "Checking syntax and style of fish files..." 3 - 4 - set -l exclude_functions '(fish_check_saved_functions|fish_prompt|fisher)' 5 - 6 - for fish_function in ~/.config/fish/functions/*.fish 7 - set -l func_name (basename $fish_function .fish) 8 - set -l rel_func_path '~/.config/fish/functions/'$func_name'.fish' 9 - 10 - if string match --quiet --regex $exclude_functions $func_name 11 - continue 12 - end 13 - 14 - funcsave $func_name &>/dev/null 15 - sed -e '/ Defined in .*\.fish/d' $fish_function >$fish_function.new 16 - mv $fish_function.new $fish_function 17 - end 18 - 19 - set -l retcode 0 20 - set -l check_files 21 - 22 - for fish_file in ~/.config/fish/**/*.fish 23 - if string match --quiet --regex $exclude_functions $fish_file 24 - continue 25 - end 26 - 27 - set -a check_files $fish_file 28 - 29 - if ! fish --no-execute $fish_file 30 - set -l retcode (math 1 + $retcode) 31 - end 32 - end 33 - 34 - fish_indent --check $check_files 35 - set -l failed_files $status 36 - if test $failed_files -ne 0 37 - set retcode (math $retcode + $failed_files) 38 - fish_indent --write $check_files 39 - end 40 - 41 - return $retcode 42 - end
+1 -1
.config/fish/functions/fisher.fish
··· 83 83 fish -c " 84 84 if test -e $plugin 85 85 command cp -Rf $plugin/* $source 86 - else 86 + else 87 87 set temp (command mktemp -d) 88 88 set name (string split \@ $plugin) || set name[2] HEAD 89 89 set url https://codeload.github.com/\$name[1]/tar.gz/\$name[2]
+1 -3
.config/gdb/init.py
··· 1 - #!/usr/bin/env python2 2 - 3 1 from __future__ import print_function 4 2 5 3 import re ··· 7 5 # Replace working dir /i95code with ~/Documents/workspace 8 6 # This make things like cmd+click work properly 9 7 # pwd_str = gdb.execute("pwd", from_tty=False, to_string=True).strip() 10 - # 8 + # 11 9 # new_pwd = re.sub(r"^.+/i95code/(.+)\.$", r"~/Documents/workspace/\1", pwd_str) 12 10 # print("cwd: '{}'".format(new_pwd)) 13 11 # gdb.execute("cd {}".format(new_pwd))
-1
.config/git/ignore
··· 50 50 Network Trash Folder 51 51 Temporary Items 52 52 .apdisk 53 -
+1 -1
.config/keepassxc/keepassxc-browser_settings.json
··· 1 - {"autoCompleteUsernames":true,"showGroupNameInAutocomplete":true,"autoFillAndSend":false,"autoFillSingleEntry":false,"autoReconnect":true,"autoRetrieveCredentials":true,"autoSubmit":false,"checkUpdateKeePassXC":7,"colorTheme":"system","defaultGroup":"","defaultGroupAlwaysAsk":false,"redirectAllowance":3,"saveDomainOnly":true,"showLoginFormIcon":true,"showLoginNotifications":true,"showNotifications":true,"showOTPIcon":true,"usePasswordGeneratorIcons":false,"useObserver":true,"usePredefinedSites":true,"sitePreferences":[],"saveDomainOnlyNewCreds":true} 1 + {"autoCompleteUsernames":true,"showGroupNameInAutocomplete":true,"autoFillAndSend":false,"autoFillSingleEntry":false,"autoReconnect":true,"autoRetrieveCredentials":true,"autoSubmit":false,"checkUpdateKeePassXC":7,"colorTheme":"system","defaultGroup":"","defaultGroupAlwaysAsk":false,"redirectAllowance":3,"saveDomainOnly":true,"showLoginFormIcon":true,"showLoginNotifications":true,"showNotifications":true,"showOTPIcon":true,"usePasswordGeneratorIcons":false,"useObserver":true,"usePredefinedSites":true,"sitePreferences":[],"saveDomainOnlyNewCreds":true}
-2
.config/kinto/kinto.py
··· 977 977 978 978 K("LC-Shift-Space"): K("Super-Shift-Space"), 979 979 }, "terminals") 980 - 981 -
+1 -1
.config/newtabtools/personal/prefs.json
··· 12 12 "spacing": "large", 13 13 "theme": "dark", 14 14 "titleSize": "hidden" 15 - } 15 + }
+1 -1
.config/newtabtools/personal/tiles.json
··· 72 72 "position": 2, 73 73 "id": 16 74 74 } 75 - ] 75 + ]
+1 -1
.config/newtabtools/work/prefs.json
··· 31 31 "spacing": "large", 32 32 "theme": "dark", 33 33 "titleSize": "hidden" 34 - } 34 + }
+1 -1
.config/newtabtools/work/tiles.json
··· 69 69 "position": 11, 70 70 "id": 13 71 71 } 72 - ] 72 + ]
+3 -4
.config/nixos/prismo/configuration.nix
··· 89 89 90 90 # Syncthing discovery 91 91 21027 92 - ]; 92 + ]; 93 93 94 94 95 95 # ========================================================================== ··· 134 134 services.tlp = { 135 135 enable = true; 136 136 settings = { 137 - START_CHARGE_THRESH_BAT0 = 0; 137 + START_CHARGE_THRESH_BAT0 = 0; 138 138 STOP_CHARGE_THRESH_BAT0 = 65; 139 139 }; 140 - }; 140 + }; 141 141 142 142 services.devmon.enable = true; 143 143 ··· 212 212 system.stateVersion = "20.03"; # Did you read the comment? 213 213 214 214 } 215 -
+4 -2
.config/nvim/plugin/numbertoggle.lua
··· 18 18 vim.cmd.redraw() 19 19 end 20 20 end, 21 - }) 21 + } 22 + ) 22 23 23 24 vim.api.nvim_create_autocmd( 24 25 -- { "BufLeave", "FocusLost", "InsertEnter", "CmdlineEnter", "WinLeave", "BufWinLeave", }, ··· 32 33 vim.api.nvim_exec_autocmds("OptionSet", { pattern = "relativenumber" }) 33 34 vim.cmd.redraw() 34 35 end, 35 - }) 36 + } 37 + )
-3
.config/pyp.py
··· 1 - #!/usr/bin/env python3 2 - 3 1 # Convenience import aliases 4 2 from urllib.parse import quote, unquote 5 -
+1 -1
.config/stylus/settings.json
··· 990 990 "etag": "W/\"1e83d-XMjzUUCqrZp+Zm5qIxvmGpM/91w\"", 991 991 "updateDate": 1672706580000 992 992 } 993 - ] 993 + ]
-1
.config/thefuck/.gitignore
··· 2 2 __pycache__/ 3 3 *.py[cod] 4 4 *$py.class 5 -
+1 -2
.config/tmux/tmux.conf
··· 1 1 set -g mode-keys vi 2 - set -g mouse on 2 + set -g mouse on 3 3 set -g default-terminal "tmux-256color" 4 4 set -g default-shell $SHELL 5 -
+1
.config/yadm/.pre-commit-config.yaml
··· 32 32 rev: v0.20.0 33 33 hooks: 34 34 - id: stylua 35 + args: [--indent-type=Spaces] 35 36 36 37 - repo: https://github.com/shellcheck-py/shellcheck-py 37 38 rev: v0.10.0.1
+4 -4
.emacs.d/lisp/evil-adjust.el
··· 38 38 ;; (evil-adjust) 39 39 40 40 ;;; Code: 41 - 41 + 42 42 (defun evil-adjust-eval-print-last-sexp (&optional arg) 43 43 "Evaluate the sexp before point and print it on a new line. 44 44 ··· 68 68 )) 69 69 (otherwise (eval-print-last-sexp arg)) 70 70 )) 71 - 71 + 72 72 (defun evil-adjust-eval-last-sexp (&optional arg) 73 73 "Evaluate the sexp before point and print it in the echo area. 74 74 ··· 98 98 )) 99 99 (otherwise (eval-last-sexp arg)) 100 100 )) 101 - 101 + 102 102 (defun evil-adjust-emacs25-p () 103 103 (return (= 25 (truncate (string-to-number emacs-version))))) 104 - 104 + 105 105 (defun evil-adjust (&rest options) 106 106 "Initialize evil adjustments. 107 107
-1
.gitignore
··· 73 73 !/Library/Application Support/lghub/ 74 74 /Library/Application Support/lghub/* 75 75 !/Library/Application Support/lghub/settings.db 76 -
-2
.inputrc
··· 6 6 set mark-symlinked-directories on 7 7 set colored-completion-prefix on 8 8 set menu-complete-display-prefix On 9 - 10 -
-1
.pythonrc.py
··· 1 - #!/usr/bin/env python 2 1 try: 3 2 import readline 4 3 except ImportError:
-1
.ssh/.gitignore
··· 11 11 # Ignore work-specific config files/keys 12 12 field_deployments 13 13 publish128teng* 14 -
+1 -1
.vim/ftdetect/conf.vim
··· 1 - au BufNewFile,BufRead *.cnf,*.conf set filetype=dosini 1 + au BufNewFile,BufRead *.cnf,*.conf set filetype=dosini
+1 -1
.vim/ftdetect/glsl.vim
··· 1 - au BufNewFile,BufRead *.frag,*.vert,*.fp,*.vp,*.glsl,*.fs,*.vs setfiletype glsl 1 + au BufNewFile,BufRead *.frag,*.vert,*.fp,*.vp,*.glsl,*.fs,*.vs setfiletype glsl
+1 -1
.vim/ftdetect/rust.vim
··· 1 - au BufNewFile,BufRead *.rs setfiletype rust 1 + au BufNewFile,BufRead *.rs setfiletype rust
+4 -4
.vim/syntax/glsl.vim
··· 145 145 syn keyword glslUniform gl_TextureEnvColor gl_Fog 146 146 syn match glslUniform display "gl_EyePlane[STRQ]" 147 147 syn match glslUniform display "gl_ObjectPlane[STRQ]" 148 - syn keyword glslUniform gl_ModelViewMatrixInverse gl_ProjectionMatrixInverse gl_ModelViewProjectionMatrixInverse 148 + syn keyword glslUniform gl_ModelViewMatrixInverse gl_ProjectionMatrixInverse gl_ModelViewProjectionMatrixInverse 149 149 syn keyword glslUniform gl_TextureMatrixInverse gl_ModelViewMatrixTranspose gl_ProjectionMatrixTranspose 150 150 syn keyword glslUniform gl_ModelViewProjectionMatrixTranspose gl_TextureMatrixTranspose gl_ModelViewMatrixInverseTranspose 151 151 syn keyword glslUniform gl_ProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixInverseTranspose gl_TextureMatrixInverseTranspose ··· 158 158 " constants 159 159 syn keyword glslConstant gl_MaxLights gl_MaxClipPlanes gl_MaxTextureUnits gl_MaxTextureCoords gl_MaxVertexAttribs 160 160 syn keyword glslConstant gl_MaxVertexUniformComponents gl_MaxVaryingFloats gl_MaxVertexTextureImageUnits 161 - syn keyword glslConstant gl_MaxCombinedTextureImageUnits gl_MaxTextureImageUnits gl_MaxFragmentUniformComponents 161 + syn keyword glslConstant gl_MaxCombinedTextureImageUnits gl_MaxTextureImageUnits gl_MaxFragmentUniformComponents 162 162 syn keyword glslConstant gl_MaxDrawBuffers 163 163 164 164 " swizzling ··· 168 168 169 169 " built in functions 170 170 syn keyword glslFunc radians degrees sin cos tan asin acos atan pow exp2 log2 sqrt inversesqrt 171 - syn keyword glslFunc abs sign floor ceil fract mod min max clamp mix step smoothstep 171 + syn keyword glslFunc abs sign floor ceil fract mod min max clamp mix step smoothstep 172 172 syn keyword glslFunc length distance dot cross normalize ftransform faceforward reflect 173 173 syn keyword glslFunc matrixcompmult lessThan lessThanEqual greaterThan greaterThanEqual equal notEqual any all not 174 174 syn keyword glslFunc texture1D texture1DProj texture1DLod texture1DProjLod ··· 187 187 syn keyword glslUnsupported inline noinline volatile public static extern external interface 188 188 syn keyword glslUnsupported long short double half fixed unsigned 189 189 syn keyword glslUnsupported input output 190 - syn keyword glslUnsupported hvec2 hvec3 hvec4 dvec2 dvec3 dvec4 fvec2 fvec3 fvec4 190 + syn keyword glslUnsupported hvec2 hvec3 hvec4 dvec2 dvec3 dvec4 fvec2 fvec3 fvec4 191 191 syn keyword glslUnsupported sampler2DRect sampler3DRect sampler2DRectShadow 192 192 syn keyword glslUnsupported sizeof cast 193 193 syn keyword glslUnsupported namespace using
+45 -45
.vim/syntax/prolog.vim
··· 20 20 21 21 syntax case match 22 22 23 - syntax keyword prologISOBuiltIn var nonvar integer float number atom string 24 - \atomic compound unify_with_occurs_check fail false true repeat call once 25 - \catch throw abolish retract asserta assertz current_predicate clause open 26 - \close stream_property set_stream_position set_input set_output current_ouput 27 - \nl put_byte put_char put_code flush_output get_byte get_code get_char 28 - \peek_byte peek_code peek_char at_end_of_stream write_term write_canonical 29 - \write writeq read read_term functor arg copy_term atom_codes atom_chars 30 - \char_code number_chars number_codes atom_length sub_atom op current_op 31 - \char_conversion current_char_conversion is mod rem div round float 32 - \float_fractional_part float_integer_part truncate floor ceiling sqrt sin cos 23 + syntax keyword prologISOBuiltIn var nonvar integer float number atom string 24 + \atomic compound unify_with_occurs_check fail false true repeat call once 25 + \catch throw abolish retract asserta assertz current_predicate clause open 26 + \close stream_property set_stream_position set_input set_output current_ouput 27 + \nl put_byte put_char put_code flush_output get_byte get_code get_char 28 + \peek_byte peek_code peek_char at_end_of_stream write_term write_canonical 29 + \write writeq read read_term functor arg copy_term atom_codes atom_chars 30 + \char_code number_chars number_codes atom_length sub_atom op current_op 31 + \char_conversion current_char_conversion is mod rem div round float 32 + \float_fractional_part float_integer_part truncate floor ceiling sqrt sin cos 33 33 \atan log findall bagof setof sub_atom 34 34 35 - syntax keyword prologSWIBuiltIn rational callable ground cyclic_term subsumes subsumes_chk 36 - \unifiable use_module compare apply not ignore call_with_depth_limit call_cleanup 37 - \print_message print_message_lines message_hook on_signal current_signal block exit 38 - \term_hash redefine_system_predicate retractall assert recorda recordz recorded 39 - \erase flag compile_predicates index current_atom 40 - \current_blob current_functor current_flag current_key dwim_predicate nth_clause 41 - \predicate_property open_null_stream current_stream is_stream stream_position_data 42 - \seek set_stream see tell append seeing telling seen set_prolog_IO told 43 - \wait_for_input byte_count character_count line_count line_position read_clause 44 - \put tab ttyflush get0 get skip get_single_char copy_stream_data print portray 45 - \read_history prompt setarg nb_setarg nb_linkarg duplicate_term numbervars 46 - \term_variables atom_number name term_to_atom atom_to_term atom_concat 35 + syntax keyword prologSWIBuiltIn rational callable ground cyclic_term subsumes subsumes_chk 36 + \unifiable use_module compare apply not ignore call_with_depth_limit call_cleanup 37 + \print_message print_message_lines message_hook on_signal current_signal block exit 38 + \term_hash redefine_system_predicate retractall assert recorda recordz recorded 39 + \erase flag compile_predicates index current_atom 40 + \current_blob current_functor current_flag current_key dwim_predicate nth_clause 41 + \predicate_property open_null_stream current_stream is_stream stream_position_data 42 + \seek set_stream see tell append seeing telling seen set_prolog_IO told 43 + \wait_for_input byte_count character_count line_count line_position read_clause 44 + \put tab ttyflush get0 get skip get_single_char copy_stream_data print portray 45 + \read_history prompt setarg nb_setarg nb_linkarg duplicate_term numbervars 46 + \term_variables atom_number name term_to_atom atom_to_term atom_concat 47 47 \concat_atom atom_prefix normalize_space collation_key char_type string_to_list 48 - \code_type downcase_atom upcase_atom collation_key locale_sort string_to_atom 49 - \string_length string_concat sub_string between succ plus rdiv max min random 50 - \integer rationalize ceil xor tan asin acos pi e cputime eval msb lsb popcount 51 - \powm arithmetic_function current_arithmetic_function is_list memberchk length 52 - \sort msort keysort predsort merge merge_set maplist forall writeln writef 53 - \swritef format format_predicate current_format_predicate tty_get_capability 54 - \tty_goto tty_put set_tty tty_size shell win_exec win_shell win_folder 55 - \win_registry_get_value getenv setenv unsetenv setlocale unix date time 56 - \get_time stamp_date_time date_time_stamp date_time_value format_time 57 - \parse_time window_title win_window_pos win_has_menu win_insert_menu 58 - \win_insert_menu_item access_file exists_file file_directory_name file_base_name 59 - \same_file exists_directory delete_file rename_file size_file time_file 60 - \absolute_file_name is_absolute_file_name file_name_extension expand_file_name 61 - \prolog_to_os_filename read_link tmp_file make_directory working_directory chdir 62 - \garbage_collect garbage_collect_atoms trim_stacks stack_parameter dwim_match 63 - \wildcard_match sleep qcompile portray_clause acyclic_term clause_property 64 - \setup_and_call_cleanup message_to_string phrase hash with_output_to fileerrors 65 - \read_pending_input prompt1 same_term sub_string merge_set 48 + \code_type downcase_atom upcase_atom collation_key locale_sort string_to_atom 49 + \string_length string_concat sub_string between succ plus rdiv max min random 50 + \integer rationalize ceil xor tan asin acos pi e cputime eval msb lsb popcount 51 + \powm arithmetic_function current_arithmetic_function is_list memberchk length 52 + \sort msort keysort predsort merge merge_set maplist forall writeln writef 53 + \swritef format format_predicate current_format_predicate tty_get_capability 54 + \tty_goto tty_put set_tty tty_size shell win_exec win_shell win_folder 55 + \win_registry_get_value getenv setenv unsetenv setlocale unix date time 56 + \get_time stamp_date_time date_time_stamp date_time_value format_time 57 + \parse_time window_title win_window_pos win_has_menu win_insert_menu 58 + \win_insert_menu_item access_file exists_file file_directory_name file_base_name 59 + \same_file exists_directory delete_file rename_file size_file time_file 60 + \absolute_file_name is_absolute_file_name file_name_extension expand_file_name 61 + \prolog_to_os_filename read_link tmp_file make_directory working_directory chdir 62 + \garbage_collect garbage_collect_atoms trim_stacks stack_parameter dwim_match 63 + \wildcard_match sleep qcompile portray_clause acyclic_term clause_property 64 + \setup_and_call_cleanup message_to_string phrase hash with_output_to fileerrors 65 + \read_pending_input prompt1 same_term sub_string merge_set 66 66 67 67 syntax cluster prologBuiltIn contains=prologSWIBuiltIn,prologISOBuiltIn 68 68 69 - syntax match prologArithmetic /\*\*\?\|+\|\/\/\?\|\/\\\|<<\|>>\|\\\/\?\|\^/ 69 + syntax match prologArithmetic /\*\*\?\|+\|\/\/\?\|\/\\\|<<\|>>\|\\\/\?\|\^/ 70 70 \contained containedin=prologBody 71 71 72 - syntax match prologRelations /=\.\.\|!\|=:=\|=\?<\|=@=\|=\\=\|>=\?\|@=\?<\|@>=\?\|\\+\|\\\?=\?=\|\\\?=@=\|=/ 72 + syntax match prologRelations /=\.\.\|!\|=:=\|=\?<\|=@=\|=\\=\|>=\?\|@=\?<\|@>=\?\|\\+\|\\\?=\?=\|\\\?=@=\|=/ 73 73 \contained containedin=prologBody 74 74 75 75 syntax region prologCComment fold start=/\/\*/ end=/\*\// contains=prologTODO,@Spell ··· 78 78 syntax keyword prologTODO FIXME TODO fixme todo Fixme FixMe Todo ToDo XXX xxx contained 79 79 syntax cluster prologComments contains=prologCComment,prologComment,prologCommentFold 80 80 81 - syntax region prologBody fold start=/\(:-\|?-\)/ end=/\./ 81 + syntax region prologBody fold start=/\(:-\|?-\)/ end=/\./ 82 82 \contains=@prologAll,prologPredicateWithArity 83 - syntax region prologDCGBody fold start=/-->/ end=/\./ 83 + syntax region prologDCGBody fold start=/-->/ end=/\./ 84 84 \contains=@prologAll,prologDCGSpecials 85 85 86 86 syntax match prologNumber /\<\d\+\>/ contained ··· 92 92 syntax match prologHead /\<\l\w*\>/ nextgroup=prologBody,prologDCGBody skipwhite 93 93 syntax region prologHeadWithArgs start=/\<\l\w*\>(/ end=/)/ nextgroup=prologBody,prologDCGBody contains=@prologAll 94 94 95 - syntax match prologOpStatement /indexed\|discontiguous\|dynamic\|module_transparent\|multifile\|volatile\|initialization/ 95 + syntax match prologOpStatement /indexed\|discontiguous\|dynamic\|module_transparent\|multifile\|volatile\|initialization/ 96 96 \containedin=prologBody contained 97 97 98 98 syntax region prologDCGSpecials start=/{/ end=/}/ contained contains=@prologAll
+1 -1
.vim/syntax/redcode.vim
··· 140 140 141 141 "Handy to avoid Marcia Trionfale bug 142 142 HiLink redLineContinue WarningMsg 143 - 143 + 144 144 delcommand HiLink 145 145 endif 146 146