this repo has no description
0
fork

Configure Feed

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

Minor vscode updates

Also fix cosmetic issue with ^C by echoing before exiting

+56 -18
+15 -15
.config/Code/User/extensions.txt
··· 10 10 bbenoist.QML@1.0.0 11 11 be5invis.vscode-custom-css@7.1.0 12 12 bierner.markdown-checkbox@0.4.0 13 - bierner.markdown-mermaid@1.18.0 13 + bierner.markdown-mermaid@1.18.1 14 14 bmalehorn.vscode-fish@1.0.33 15 15 bpruitt-goddard.mermaid-markdown-syntax-highlighting@1.5.1 16 16 codeout.vscode-junos@0.3.0 ··· 22 22 dnicolson.binary-plist@0.11.0 23 23 DotJoshJohnson.xml@2.5.1 24 24 dunstontc.viml@0.1.7 25 - eamodio.gitlens@13.4.0 25 + eamodio.gitlens@13.5.0 26 26 emeraldwalk.RunOnSave@0.2.0 27 27 GitHub.vscode-pull-request-github@0.62.0 28 28 golang.go@0.38.0 29 - Gruntfuggly.todo-tree@0.0.224 30 - haskell.haskell@2.2.2 29 + Gruntfuggly.todo-tree@0.0.226 30 + haskell.haskell@2.2.4 31 31 ian-h-chamberlain.pica200@0.1.0 32 32 IBM.output-colorizer@0.1.2 33 - iliazeus.vscode-ansi@1.1.5 33 + iliazeus.vscode-ansi@1.1.6 34 34 janjoerke.jenkins-pipeline-linter-connector@1.2.0 35 35 jasonnutter.vscode-codeowners@1.1.1 36 36 jbenden.c-cpp-flylint@1.13.0 ··· 46 46 marko2276.yang@0.1.3 47 47 mattn.Lisp@0.1.12 48 48 mechatroner.rainbow-csv@3.6.0 49 - moshfeu.compare-folders@0.22.3 49 + moshfeu.compare-folders@0.22.4 50 50 ms-azuretools.vscode-docker@1.24.0 51 51 ms-dotnettools.vscode-dotnet-runtime@1.6.0 52 52 ms-python.isort@2022.8.0 53 53 ms-python.python@2023.6.0 54 - ms-python.vscode-pylance@2023.4.10 55 - ms-toolsai.jupyter@2023.3.1000892223 54 + ms-python.vscode-pylance@2023.4.20 55 + ms-toolsai.jupyter@2023.3.1201040234 56 56 ms-toolsai.jupyter-renderers@1.0.15 57 - ms-vscode-remote.remote-containers@0.288.0 58 - ms-vscode-remote.remote-ssh@0.98.0 57 + ms-vscode-remote.remote-containers@0.288.1 58 + ms-vscode-remote.remote-ssh@0.100.0 59 59 ms-vscode-remote.remote-ssh-edit@0.84.0 60 60 ms-vscode.cmake-tools@1.13.45 61 61 ms-vscode.cpptools@1.14.5 ··· 63 63 ms-vscode.live-server@0.4.7 64 64 ms-vscode.remote-explorer@0.4.0 65 65 ms-vscode.vscode-serial-monitor@0.9.0 66 - ms-vsliveshare.vsliveshare@1.0.5834 66 + ms-vsliveshare.vsliveshare@1.0.5857 67 67 naumovs.color-highlight@2.5.0 68 68 neilding.language-liquid@0.1.1 69 69 nico-castell.linux-desktop-file@0.0.21 ··· 77 77 redhat.vscode-yaml@1.12.2 78 78 ria.elastic@0.13.3 79 79 richie5um2.vscode-sort-json@1.20.0 80 - robocorp.robotframework-lsp@1.9.0 80 + robocorp.robotframework-lsp@1.10.0 81 81 RReverser.llvm@0.1.1 82 - rust-lang.rust-analyzer@0.3.1463 82 + rust-lang.rust-analyzer@0.3.1472 83 83 ryanluker.vscode-coverage-gutters@2.10.4 84 84 samuelcolvin.jinjahtml@0.20.0 85 85 sleistner.vscode-fileutils@3.10.1 ··· 87 87 stevensona.shader-toy@0.10.15 88 88 streetsidesoftware.code-spell-checker@2.20.4 89 89 tamasfe.even-better-toml@0.19.0 90 - timonwong.shellcheck@0.31.1 90 + timonwong.shellcheck@0.32.0 91 91 trond-snekvik.gnu-mapfiles@1.1.0 92 92 twxs.cmake@0.0.17 93 93 Tyriar.sort-lines@1.9.1 ··· 102 102 wholroyd.jinja@0.0.8 103 103 wingrunr21.vscode-ruby@0.28.0 104 104 xaver.clang-format@1.9.0 105 - xoronic.pestfile@0.4.0 105 + xoronic.pestfile@0.4.1 106 106 yy0931.gitconfig-lsp@0.9.3 107 107 ZixuanWang.linkerscript@1.0.3 108 108 zxh404.vscode-proto3@0.5.5
+30
.config/Code/User/keybindings.json
··· 887 887 "when": "isLinux && editorTextFocus && neovim.init && neovim.mode == 'visual'" 888 888 }, 889 889 { 890 + "key": "ctrl+alt+r", 891 + "command": "toggleFindRegex", 892 + "when": "isLinux && editorFocus" 893 + }, 894 + { 895 + "key": "ctrl+alt+r", 896 + "command": "toggleSearchEditorRegex", 897 + "when": "isLinux && inSearchEditor && searchInputBoxFocus" 898 + }, 899 + { 900 + "key": "ctrl+alt+r", 901 + "command": "toggleSearchRegex", 902 + "when": "isLinux && searchViewletFocus" 903 + }, 904 + { 905 + "key": "ctrl+enter", 906 + "command": "search.action.replaceAll", 907 + "when": "isLinux && replaceActive && searchViewletVisible && !findWidgetVisible" 908 + }, 909 + { 910 + "key": "ctrl+enter", 911 + "command": "search.action.replaceAll", 912 + "when": "isLinux && replaceActive && searchViewletVisible && !findWidgetVisible" 913 + }, 914 + { 915 + "key": "ctrl+enter", 916 + "command": "editor.action.replaceAll", 917 + "when": "isLinux && editorFocus && findWidgetVisible" 918 + }, 919 + { 890 920 "key": "ctrl+j", 891 921 "command": "workbench.action.togglePanel", 892 922 "when": "isLinux"
+10 -2
.config/Code/User/settings.json
··· 160 160 "cmake.skipConfigureIfCachePresent": true, 161 161 162 162 "color-highlight.matchRgbWithNoFunction": true, 163 + "color-highlight.languages": [ 164 + "*", 165 + "!css", 166 + ], 167 + "color-highlight.rgbWithNoFunctionLanguages": [ 168 + "*", 169 + "!css", 170 + ], 163 171 "color-highlight.markerType": "dot-before", 164 172 165 173 "comments.openView": "never", ··· 809 817 "rust-analyzer.diagnostics.warningsAsHint": [ 810 818 "clippy::missing_panics_doc", 811 819 "clippy::missing_errors_doc", 820 + "missing_docs", 812 821 "clippy::must_use_candidate", 813 822 ], 814 823 "rust-analyzer.diagnostics.warningsAsInfo": [ 815 - "missing_docs", 816 824 "clippy::pedantic", 817 825 ], 818 826 "rust-analyzer.imports.granularity.enforce": true, ··· 942 950 "icon": "chevron-right" 943 951 }, 944 952 }, 945 - "terminal.integrated.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-_", 953 + "terminal.integrated.wordSeparators": " ()[]{}',\"`─‘’|", 946 954 947 955 "todo-tree.filtering.includeHiddenFiles": true, 948 956 "todo-tree.filtering.scopes": [
+1 -1
.config/yadm/hooks/pre_commit
··· 2 2 3 3 set -o nounset 4 4 5 - trap 'exit -2' INT 5 + trap 'echo ; exit -2' INT 6 6 7 7 # Start from the base yadm directory 8 8 cd "$(dirname "${BASH_SOURCE[0]}")" || exit_with_error "Failed to find yadm directory!"