Deployed fd6fbca with MkDocs version: 1.5.2

This commit is contained in:
LGUG2Z
2024-05-22 16:16:46 -07:00
parent a80d2b75d9
commit ee19a6a6c1
161 changed files with 322 additions and 181 deletions
+88 -18
View File
@@ -22,7 +22,7 @@
<title>Macro Rendering Error - Komorebi</title>
<title>AutoHotKey - Komorebi</title>
@@ -77,7 +77,7 @@
<div data-md-component="skip">
<a href="#macro-rendering-error" class="md-skip">
<a href="#autohotkey" class="md-skip">
Skip to content
</a>
@@ -111,7 +111,7 @@
<div class="md-header__topic" data-md-component="header-topic">
<span class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</span>
</div>
@@ -870,7 +870,7 @@
<span class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</span>
@@ -4144,21 +4144,91 @@
<h1 id="macro-rendering-error"><em>Macro Rendering Error</em></h1>
<p><strong>TemplateNotFound</strong>: ./komorebi.ahk.txt</p>
<div class="highlight"><pre><span></span><code>Traceback (most recent call last):
File &quot;/nix/store/d2vbw01zyr4xhwjf8kiskcgnwfa48hj4-python3.11-mkdocs-macros-plugin-0.7.0/lib/python3.11/site-packages/mkdocs_macros/plugin.py&quot;, line 480, in render
return md_template.render(**page_variables)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File &quot;/nix/store/66p2xpllxiv6lgxsfvzd39ii083ac828-python3.11-Jinja2-3.1.3/lib/python3.11/site-packages/jinja2/environment.py&quot;, line 1301, in render
self.environment.handle_exception()
File &quot;/nix/store/66p2xpllxiv6lgxsfvzd39ii083ac828-python3.11-Jinja2-3.1.3/lib/python3.11/site-packages/jinja2/environment.py&quot;, line 936, in handle_exception
raise rewrite_traceback_stack(source=source)
File &quot;&lt;template&gt;&quot;, line 14, in top-level template code
File &quot;/nix/store/66p2xpllxiv6lgxsfvzd39ii083ac828-python3.11-Jinja2-3.1.3/lib/python3.11/site-packages/jinja2/loaders.py&quot;, line 204, in get_source
raise TemplateNotFound(template)
jinja2.exceptions.TemplateNotFound: ./komorebi.ahk.txt
<h1 id="autohotkey">AutoHotKey</h1>
<p>If you would like to use Autohotkey, please make sure you have AutoHotKey v2
installed.</p>
<p>Generally, users who opt for AHK will have specific needs that can only be
addressed by the advanced functionality of AHK, and so they are assumed to be
able to craft their own configuration files.</p>
<p>If you would like to try out AHK, here is a simple sample configuration which
largely matches the <code>whkdrc</code> sample configuration.</p>
<div class="highlight"><pre><span></span><code>#Requires AutoHotkey v2.0.2
#SingleInstance Force
Komorebic(cmd) {
RunWait(format(&quot;komorebic.exe {}&quot;, cmd), , &quot;Hide&quot;)
}
!q::Komorebic(&quot;close&quot;)
!m::Komorebic(&quot;minimize&quot;)
; Focus windows
!h::Komorebic(&quot;focus left&quot;)
!j::Komorebic(&quot;focus down&quot;)
!k::Komorebic(&quot;focus up&quot;)
!l::Komorebic(&quot;focus right&quot;)
!+[::Komorebic(&quot;cycle-focus previous&quot;)
!+]::Komorebic(&quot;cycle-focus next&quot;)
; Move windows
!+h::Komorebic(&quot;move left&quot;)
!+j::Komorebic(&quot;move down&quot;)
!+k::Komorebic(&quot;move up&quot;)
!+l::Komorebic(&quot;move right&quot;)
; Stack windows
!Left::Komorebic(&quot;stack left&quot;)
!Down::Komorebic(&quot;stack down&quot;)
!Up::Komorebic(&quot;stack up&quot;)
!Right::Komorebic(&quot;stack right&quot;)
!;::Komorebic(&quot;unstack&quot;)
![::Komorebic(&quot;cycle-stack previous&quot;)
!]::Komorebic(&quot;cycle-stack next&quot;)
; Resize
!=::Komorebic(&quot;resize-axis horizontal increase&quot;)
!-::Komorebic(&quot;resize-axis horizontal decrease&quot;)
!+=::Komorebic(&quot;resize-axis vertical increase&quot;)
!+_::Komorebic(&quot;resize-axis vertical decrease&quot;)
; Manipulate windows
!t::Komorebic(&quot;toggle-float&quot;)
!f::Komorebic(&quot;toggle-monocle&quot;)
; Window manager options
!+r::Komorebic(&quot;retile&quot;)
!p::Komorebic(&quot;toggle-pause&quot;)
; Layouts
!x::Komorebic(&quot;flip-layout horizontal&quot;)
!y::Komorebic(&quot;flip-layout vertical&quot;)
; Workspaces
!1::Komorebic(&quot;focus-workspace 0&quot;)
!2::Komorebic(&quot;focus-workspace 1&quot;)
!3::Komorebic(&quot;focus-workspace 2&quot;)
!4::Komorebic(&quot;focus-workspace 3&quot;)
!5::Komorebic(&quot;focus-workspace 4&quot;)
!6::Komorebic(&quot;focus-workspace 5&quot;)
!7::Komorebic(&quot;focus-workspace 6&quot;)
!8::Komorebic(&quot;focus-workspace 7&quot;)
; Move windows across workspaces
!+1::Komorebic(&quot;move-to-workspace 0&quot;)
!+2::Komorebic(&quot;move-to-workspace 1&quot;)
!+3::Komorebic(&quot;move-to-workspace 2&quot;)
!+4::Komorebic(&quot;move-to-workspace 3&quot;)
!+5::Komorebic(&quot;move-to-workspace 4&quot;)
!+6::Komorebic(&quot;move-to-workspace 5&quot;)
!+7::Komorebic(&quot;move-to-workspace 6&quot;)
!+8::Komorebic(&quot;move-to-workspace 7&quot;)
</code></pre></div>
<p>By default, the <code>komorebi.ahk</code> file should be located in the <code>$Env:USERPROFILE</code>
directory, however, if <code>$Env:KOMOREBI_CONFIG_HOME</code> is set, it should be located
there.</p>
<p>Once the file is in place, you can stop komorebi and whkd by running <code>komorebic stop --whkd</code>,
and then start komorebi with Autohotkey by running <code>komorebic start --ahk</code>.</p>
+1 -1
View File
@@ -871,7 +871,7 @@
<span class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</span>
+1 -1
View File
@@ -871,7 +871,7 @@
<span class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</span>
@@ -871,7 +871,7 @@
<span class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</span>
@@ -4220,13 +4220,13 @@ been cleared.</p>
<a href="autohotkey.html" class="md-footer__link md-footer__link--next" aria-label="Next: Macro Rendering Error" rel="next">
<a href="autohotkey.html" class="md-footer__link md-footer__link--next" aria-label="Next: AutoHotKey" rel="next">
<div class="md-footer__title">
<span class="md-footer__direction">
Next
</span>
<div class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</div>
</div>
<div class="md-footer__button md-icon">
+1 -1
View File
@@ -871,7 +871,7 @@
<span class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</span>
+1 -1
View File
@@ -871,7 +871,7 @@
<span class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</span>
+1 -1
View File
@@ -871,7 +871,7 @@
<span class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</span>
+1 -1
View File
@@ -871,7 +871,7 @@
<span class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</span>
+1 -1
View File
@@ -871,7 +871,7 @@
<span class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</span>
+1 -1
View File
@@ -871,7 +871,7 @@
<span class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</span>
+1 -1
View File
@@ -871,7 +871,7 @@
<span class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</span>
@@ -871,7 +871,7 @@
<span class="md-ellipsis">
Macro Rendering Error
AutoHotKey
</span>