Deployed fd6fbca with MkDocs version: 1.5.2

This commit is contained in:
LGUG2Z
2024-05-22 16:10:57 -07:00
parent f2103481bd
commit f3170d07b4
3 changed files with 4 additions and 7 deletions

View File

@@ -4145,7 +4145,7 @@
<h1 id="macro-rendering-error"><em>Macro Rendering Error</em></h1>
<p><strong>TemplateNotFound</strong>: ../komorebi.ahk</p>
<p><strong>TemplateNotFound</strong>: ./komorebi.ahk</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)
@@ -4155,12 +4155,9 @@
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 194, in get_source
pieces = split_template_path(template)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File &quot;/nix/store/66p2xpllxiv6lgxsfvzd39ii083ac828-python3.11-Jinja2-3.1.3/lib/python3.11/site-packages/jinja2/loaders.py&quot;, line 35, in split_template_path
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
jinja2.exceptions.TemplateNotFound: ./komorebi.ahk
</code></pre></div>

View File

@@ -0,0 +1,71 @@
#Requires AutoHotkey v2.0.2
#SingleInstance Force
Komorebic(cmd) {
RunWait(format("komorebic.exe {}", cmd), , "Hide")
}
!q::Komorebic("close")
!m::Komorebic("minimize")
; Focus windows
!h::Komorebic("focus left")
!j::Komorebic("focus down")
!k::Komorebic("focus up")
!l::Komorebic("focus right")
!+[::Komorebic("cycle-focus previous")
!+]::Komorebic("cycle-focus next")
; Move windows
!+h::Komorebic("move left")
!+j::Komorebic("move down")
!+k::Komorebic("move up")
!+l::Komorebic("move right")
; Stack windows
!Left::Komorebic("stack left")
!Down::Komorebic("stack down")
!Up::Komorebic("stack up")
!Right::Komorebic("stack right")
!;::Komorebic("unstack")
![::Komorebic("cycle-stack previous")
!]::Komorebic("cycle-stack next")
; Resize
!=::Komorebic("resize-axis horizontal increase")
!-::Komorebic("resize-axis horizontal decrease")
!+=::Komorebic("resize-axis vertical increase")
!+_::Komorebic("resize-axis vertical decrease")
; Manipulate windows
!t::Komorebic("toggle-float")
!f::Komorebic("toggle-monocle")
; Window manager options
!+r::Komorebic("retile")
!p::Komorebic("toggle-pause")
; Layouts
!x::Komorebic("flip-layout horizontal")
!y::Komorebic("flip-layout vertical")
; Workspaces
!1::Komorebic("focus-workspace 0")
!2::Komorebic("focus-workspace 1")
!3::Komorebic("focus-workspace 2")
!4::Komorebic("focus-workspace 3")
!5::Komorebic("focus-workspace 4")
!6::Komorebic("focus-workspace 5")
!7::Komorebic("focus-workspace 6")
!8::Komorebic("focus-workspace 7")
; Move windows across workspaces
!+1::Komorebic("move-to-workspace 0")
!+2::Komorebic("move-to-workspace 1")
!+3::Komorebic("move-to-workspace 2")
!+4::Komorebic("move-to-workspace 3")
!+5::Komorebic("move-to-workspace 4")
!+6::Komorebic("move-to-workspace 5")
!+7::Komorebic("move-to-workspace 6")
!+8::Komorebic("move-to-workspace 7")