PluginProbe
Code Block Pro – Beautiful Syntax Highlighting / trunk
Code Block Pro – Beautiful Syntax Highlighting vtrunk
1.27.1 1.27.2 1.27.3 1.27.4 1.27.5 1.27.6 1.27.7 1.28.0 1.3.0 1.4.0 1.5.0 1.5.1 1.5.2 1.6.0 1.7.0 1.8.0 1.9.0 1.9.1 1.9.2 1.9.3 trunk 1.1.0 1.10.0 1.11.0 1.11.1 All 63 releases
code-block-pro / build / shiki / samples / reg.sample

reg.sample in Code Block Pro – Beautiful Syntax Highlighting trunk, at build/shiki/samples/reg.sample

27 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 Windows Registry Editor Version 5.00
2
3
4 ; WARNING: before run replace PATH_TO_APP with correct value
5 ; Example: C:\\Anaconda3
6
7 [HKEY_CLASSES_ROOT\Directory\shell\AnacondaJupyterNotebook]
8 ; This will make it appear when you right click ON a folder
9 ; The "Icon" line can be removed if you don't want the icon to appear
10 @="&Jupyter Notebook There"
11 "Icon"="\"PATH_TO_APP\\Menu\\jupyter.ico""
12
13 [HKEY_CLASSES_ROOT\Directory\shell\AnacondaJupyterNotebook\command]
14 @="cmd /K pushd \"%1\" && \"PATH_TO_APP\\Scripts\\activate.bat\" && jupyter-notebook"
15
16
17 [HKEY_CLASSES_ROOT\Directory\Background\shell\AnacondaJupyterNotebook]
18 ; This will make it appear when you right click INSIDE a folder
19 ; The "Icon" line can be removed if you don't want the icon to appear
20 @="&Jupyter Notebook Here"
21 "Icon"="\"PATH_TO_APP\\Menu\\jupyter.ico\""
22
23 [HKEY_CLASSES_ROOT\Directory\Background\shell\AnacondaJupyterNotebook\command]
24 @="cmd /K \"PATH_TO_APP\\Scripts\\activate.bat\" && jupyter-notebook"
25
26 ; From https://github.com/NickVeld/win-registry-snippets/blob/main/AnacondaJupyterNotebookHere.reg
27