リビジョン | d5df1284592c0cab42824c945a28a077f69a1554 (tree) |
---|---|
日時 | 2023-01-02 21:15:31 |
作者 | Markus <markus.prepens@gmai...> |
コミッター | GitHub |
removed Windows stuff / check out nvr.bat and nvr.lua
@@ -34,56 +34,6 @@ Some things never change! | ||
34 | 34 | .. _Lua intro: https://github.com/nanotee/nvim-lua-guide |
35 | 35 | .. _discourse: https://neovim.discourse.group/ |
36 | 36 | |
37 | -------------------- | |
38 | -Windows Integration | |
39 | -------------------- | |
40 | - | |
41 | -Batch | |
42 | -~~~~~ | |
43 | - | |
44 | - @setlocal enableextensions & python -x %~f0 %* & goto :EOF | |
45 | - """ | |
46 | - Python3 code starts here | |
47 | - nvim --server \\.\pipe\nvim-0 --remote .bash_history | |
48 | - """ | |
49 | - | |
50 | - import os | |
51 | - import sys | |
52 | - import subprocess | |
53 | - | |
54 | - args = ["nvim", "--server", os.getenv("NVIM_LISTEN_ADDRESS") , "--remote"] | |
55 | - | |
56 | - for e in sys.argv[1:]: | |
57 | - if os.path.exists(e): e = os.path.abspath(e) | |
58 | - args.append(e) | |
59 | - proc = subprocess.Popen(args) | |
60 | - | |
61 | -Registry | |
62 | -~~~~~~~~ | |
63 | - | |
64 | - Schlüsselname: HKEY_CLASSES_ROOT\*\shell\Neovim | |
65 | - Klassenname: <KEINE KLASSE> | |
66 | - Letzter Schreibzugriff: 7/25/2022 - 10:01 AM | |
67 | - | |
68 | - Wert 0 | |
69 | - Name: <KEIN NAME> | |
70 | - Typ: REG_SZ | |
71 | - Daten: Open with Neovim | |
72 | - | |
73 | - Wert 1 | |
74 | - Name: Icon | |
75 | - Typ: REG_SZ | |
76 | - Daten: C:\Users\prepensm\AppData\Local\Programs\Neovim\bin\nvim-qt.exe | |
77 | - | |
78 | - Schlüsselname: HKEY_CLASSES_ROOT\*\shell\Neovim\command | |
79 | - Klassenname: <KEINE KLASSE> | |
80 | - Letzter Schreibzugriff: 8/29/2022 - 2:35 PM | |
81 | - | |
82 | - Wert 0 | |
83 | - Name: <KEIN NAME> | |
84 | - Typ: REG_SZ | |
85 | - Daten: "C:\Users\prepensm\AppData\Local\Programs\Neovim\bin\nvim-qt.exe" "--" "--server" "\\.\pipe\nvim-0" "--remote" "%V" | |
86 | - | |
87 | 37 | vim:ft=rst |
88 | 38 | |
89 | 39 |