about summary refs log tree commit diff
path: root/pkgs/applications/editors/vscode
Commit message (Collapse)AuthorAge
* vscode-extensions.vscjava.vscode-java-test: init at 0.37.1figsoda2022-09-09
|
* vscode-extensions.vscjava.vscode-java-debug: init at 0.44.0figsoda2022-09-09
|
* Merge pull request #189331 from CompEng0001/vscode-extensionssuperherointj2022-09-06
|\ | | | | vscode-extensions.2gua.rainbow-brackets: init at 0.0.6
| * vscode-extensions.2gua.rainbow-brackets: init at 0.0.6CompEng0012022-09-06
| | | | | | | | maintainers: add CompEng0001
* | Merge pull request #188811 from NULLx76/vscode-catppuccinSandro2022-09-04
|\ \
| * | vscode-extensions.catppuccin.catppuccin-vsc: init at 2.1.0victor2022-09-04
| | |
* | | Merge pull request #189529 from ↵superherointj2022-09-03
|\ \ \ | | | | | | | | | | | | | | | | samuela/upkeep-bot/vscodium-1.71.0.22245-1662164675 vscodium: 1.70.2.22230 -> 1.71.0.22245
| * | | vscodium: 1.70.2.22230 -> 1.71.0.22245nixpkgs-upkeep-bot2022-09-03
| | | |
* | | | vscode: add commandLineArgsSamLukeYes2022-09-03
| | | |
* | | | vscode: 1.70.2 -> 1.71.0nixpkgs-upkeep-bot2022-09-02
|/ / /
* | | Merge pull request #188435 from ↵Sandro2022-08-29
|\ \ \ | |/ / |/| | | | | superherointj/package-vscode-extensions.usernamehw.errorlens-3.6.0
| * | vscode-extensions.usernamehw.errorlens: 3.5.1 -> 3.6.0superherointj2022-08-26
| | |
* | | Merge pull request #188294 from fabianhauser/update-vscode-sveltesuperherointj2022-08-28
|\ \ \ | | | | | | | | vscode-extensions.svelte.svelte-vscode: 105.3.0 -> 105.21.0
| * | | vscode-extensions.svelte.svelte-vscode: 105.3.0 -> 105.21.0Fabian Hauser2022-08-28
| | | |
* | | | Merge pull request #183826 from felschr/vscode-firefox-debugsuperherointj2022-08-27
|\ \ \ \ | | | | | | | | | | vscode-extensions.firefox-devtools.vscode-firefox-debug: init at 2.9.8
| * | | | vscode-extensions.firefox-devtools.vscode-firefox-debug: init at 2.9.8Felix Schröter2022-08-27
| | |_|/ | |/| |
* | | | vscode-extensions.prisma.prisma: 4.1.0 -> 4.2.0superherointj2022-08-26
| | | |
* | | | vscode-extensions.jnoortheen.nix-ide: 0.1.20 -> 0.1.23superherointj2022-08-26
| | | |
* | | | vscode-extensions.ocamllabs.ocaml-platform: 1.10.4 -> 1.10.7superherointj2022-08-26
| | | |
* | | | vscode-extensions.jakebecker.elixir-ls: 0.9.0 -> 0.11.0superherointj2022-08-26
| | | |
* | | | vscode-extensions.esbenp.prettier-vscode: 9.5.0 -> 9.8.0superherointj2022-08-26
| | | |
* | | | vscode-extensions.christian-kohler.path-intellisense: 2.8.0 -> 2.8.1superherointj2022-08-26
| | | |
* | | | vscode-extensions.badochov.ocaml-formatter: 1.14.0 -> 2.0.5superherointj2022-08-26
| |_|/ |/| |
* | | Merge pull request #187819 from smasher164/millet-vscode-extensionsuperherointj2022-08-26
|\ \ \ | | | | | | | | vscode-extensions.azdavis.millet: init at 0.3.5
| * | | vscode-extensions.azdavis.millet: init at 0.3.5Akhil Indurti2022-08-25
| | |/ | |/|
* / | vscode-extensions.mkhl.direnv: init at 0.6.1victor2022-08-23
|/ /
* | Merge pull request #187371 from ↵Sandro2022-08-21
|\ \ | | | | | | | | | samuela/upkeep-bot/vscodium-1.70.2.22230-1660868653
| * | vscodium: 1.70.1.22228 -> 1.70.2.22230nixpkgs-upkeep-bot2022-08-19
| | |
* | | vscode: 1.70.1 -> 1.70.2nixpkgs-upkeep-bot2022-08-18
|/ /
* | vscodium: 1.70.1 -> 1.70.1.22228nixpkgs-upkeep-bot2022-08-17
| |
* | Merge pull request #179896 from erikarvstedt/fix-bash-exit-handlerSebastián Mancilla2022-08-14
|\ \ | | | | | | treewide: fix bash exit handlers
| * | treewide: fix bash exit handlersErik Arvstedt2022-07-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Transform exit handlers of the form trap cleanup EXIT [INT] [TERM] [QUIT] [HUP] [ERR] (where cleanup is idempotent) to trap cleanup EXIT This fixes a common bash antipattern. Each of the above signals causes the script to exit. For each signal, bash first handles the signal by running `cleanup` and then runs `cleanup` again when handling EXIT. (Exception: `vscode/*` prevents the second run of `cleanup` by removing the trap in cleanup`). Simplify the cleanup logic by just trapping exit, which is always run when the script exits due to any of the above signals. Note: In case of borgbackup, the exit handler is not idempotent, but just trapping EXIT guarantees that it's only run once.
| * | vscode: simplify helper scriptsErik Arvstedt2022-07-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This simplifies the following commit. - Remove `--` from `rm` because `$tmpDir` is guaranteed to never start with a `-`. We also don't use this pattern when removing tmpDirs at other places in nixpkgs. - Remove `unset tmpDir` because the variable `tmpDir` is never accessed after the exit handler is run.
* | | Merge pull request #186206 from samuela/upkeep-bot/vscodium-1.70.1-1660263805superherointj2022-08-13
|\ \ \ | | | | | | | | vscodium: 1.70.0 -> 1.70.1
| * | | vscodium: 1.70.0 -> 1.70.1nixpkgs-upkeep-bot2022-08-12
| | | |
* | | | vscode: 1.70.0 -> 1.70.1nixpkgs-upkeep-bot2022-08-11
|/ / /
* | | Merge pull request #185870 from wyndon/vscode.piousdeer.adwaita-themeBobby Rong2022-08-10
|\ \ \ | | | | | | | | vscode-extensions.piousdeer.adwaita-theme: 1.0.7 -> 1.0.8
| * | | vscode-extensions.piousdeer.adwaita-theme: 1.0.7 -> 1.0.8wyndon2022-08-10
| | | |
* | | | vscodium: 1.69.2 -> 1.70.0nixpkgs-upkeep-bot2022-08-06
|/ / /
* | | vscode: 1.69.2 -> 1.70.0nixpkgs-upkeep-bot2022-08-05
| | |
* | | Merge pull request #182817 from ↵superherointj2022-08-02
|\ \ \ | | | | | | | | | | | | | | | | rhoriguchi/vscode-extensions.ms-vscode.PowerShell vscode-extensions.ms-vscode.PowerShell: init at 2022.7.2
| * | | vscode-extensions.ms-vscode.PowerShell: init at 2022.7.2Ryan Horiguchi2022-08-02
| | | |
* | | | vscode-extensions.xadillax.viml: 1.0.1 -> 2.1.2kilianar2022-08-02
| | | | | | | | | | | | | | | | https://github.com/XadillaX/vscode-language-viml/releases/tag/v2.1.2
* | | | vscode-extensions.vscodevim.vim: 1.23.1 -> 1.23.2kilianar2022-08-02
| | | | | | | | | | | | | | | | https://github.com/VSCodeVim/Vim/releases/tag/v1.23.2
* | | | vscode-extensions.asvetliakov.vscode-neovim: 0.0.86 -> 0.0.89kilianar2022-08-02
| | | | | | | | | | | | | | | | https://github.com/vscode-neovim/vscode-neovim/releases/tag/v0.0.89
* | | | Merge pull request #183385 from GGG-KILLER/update/ms-dotnettools.csharp-1.25.0Sandro2022-07-30
|\ \ \ \ | |_|_|/ |/| | |
| * | | vscode-extensions.ms-dotnettools.csharp: 1.23.16 -> 1.25.0GGG2022-07-29
| |/ /
* | | Merge pull request #183025 from billewanick/update_vscodeSandro2022-07-28
|\ \ \ | | | | | | | | vscode, vscodium: 1.69.1 -> 1.69.2
| * | | vscodium: 1.69.1 -> 1.69.2Bill Ewanick2022-07-26
| | | |
| * | | vscode: 1.69.1 -> 1.69.2Bill Ewanick2022-07-26
| | | |