2022-04-16 07:40:39 +00:00
<!DOCTYPE HTML>
< html lang = "en" class = "sidebar-visible no-js dark" >
< head >
<!-- Book generated using mdBook -->
< meta charset = "UTF-8" >
< title > Awesome Hacks - xplr book< / title >
<!-- Custom HTML head -->
< meta content = "text/html; charset=utf-8" http-equiv = "Content-Type" >
< meta name = "description" content = "A hackable, minimal, fast TUI file explorer" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< meta name = "theme-color" content = "#ffffff" / >
< link rel = "shortcut icon" href = "favicon.png" >
< link rel = "stylesheet" href = "css/variables.css" >
< link rel = "stylesheet" href = "css/general.css" >
< link rel = "stylesheet" href = "css/chrome.css" >
< link rel = "stylesheet" href = "css/print.css" media = "print" >
<!-- Fonts -->
< link rel = "stylesheet" href = "FontAwesome/css/font-awesome.css" >
< link rel = "stylesheet" href = "fonts/fonts.css" >
<!-- Highlight.js Stylesheets -->
< link rel = "stylesheet" href = "highlight.css" >
< link rel = "stylesheet" href = "tomorrow-night.css" >
< link rel = "stylesheet" href = "ayu-highlight.css" >
<!-- Custom theme stylesheets -->
<!-- EthicalAds -->
< script async src = "https://media.ethicalads.io/media/client/ethicalads.min.js" > < / script >
< / head >
< body >
<!-- Provide site root to javascript -->
< script type = "text/javascript" >
var path_to_root = "";
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "coal" : "dark";
< / script >
<!-- Work around some values being stored in localStorage wrapped in quotes -->
< script type = "text/javascript" >
try {
var theme = localStorage.getItem('mdbook-theme');
var sidebar = localStorage.getItem('mdbook-sidebar');
if (theme.startsWith('"') & & theme.endsWith('"')) {
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
}
if (sidebar.startsWith('"') & & sidebar.endsWith('"')) {
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
}
} catch (e) { }
< / script >
<!-- Set the theme before any content is loaded, prevents flash -->
< script type = "text/javascript" >
var theme;
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
if (theme === null || theme === undefined) { theme = default_theme; }
var html = document.querySelector('html');
html.classList.remove('no-js')
html.classList.remove('dark')
html.classList.add(theme);
html.classList.add('js');
< / script >
<!-- Hide / unhide sidebar before it is displayed -->
< script type = "text/javascript" >
var html = document.querySelector('html');
var sidebar = 'hidden';
if (document.body.clientWidth >= 1080) {
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
sidebar = sidebar || 'visible';
}
html.classList.remove('sidebar-visible');
html.classList.add("sidebar-" + sidebar);
< / script >
< nav id = "sidebar" class = "sidebar" aria-label = "Table of contents" >
< div class = "sidebar-scrollbox" >
2022-05-25 15:48:39 +00:00
< ol class = "chapter" > < li class = "chapter-item expanded " > < a href = "introduction.html" > < strong aria-hidden = "true" > 1.< / strong > Introduction< / a > < / li > < li class = "chapter-item expanded " > < a href = "quickstart.html" > < strong aria-hidden = "true" > 2.< / strong > Quickstart< / a > < / li > < li > < ol class = "section" > < li class = "chapter-item expanded " > < a href = "install.html" > < strong aria-hidden = "true" > 2.1.< / strong > Install< / a > < / li > < li class = "chapter-item expanded " > < a href = "post-install.html" > < strong aria-hidden = "true" > 2.2.< / strong > Post Install< / a > < / li > < / ol > < / li > < li class = "chapter-item expanded " > < a href = "configuration.html" > < strong aria-hidden = "true" > 3.< / strong > Configuration< / a > < / li > < li > < ol class = "section" > < li class = "chapter-item expanded " > < a href = "general-config.html" > < strong aria-hidden = "true" > 3.1.< / strong > General< / a > < / li > < li class = "chapter-item expanded " > < a href = "node_types.html" > < strong aria-hidden = "true" > 3.2.< / strong > Node Types< / a > < / li > < li class = "chapter-item expanded " > < a href = "layouts.html" > < strong aria-hidden = "true" > 3.3.< / strong > Layouts< / a > < / li > < li class = "chapter-item expanded " > < a href = "modes.html" > < strong aria-hidden = "true" > 3.4.< / strong > Modes< / a > < / li > < / ol > < / li > < li class = "chapter-item expanded " > < a href = "concept.html" > < strong aria-hidden = "true" > 4.< / strong > Concept< / a > < / li > < li > < ol class = "section" > < li class = "chapter-item expanded " > < a href = "key-bindings.html" > < strong aria-hidden = "true" > 4.1.< / strong > Key Bindings< / a > < / li > < li > < ol class = "section" > < li class = "chapter-item expanded " > < a href = "configure-key-bindings.html" > < strong aria-hidden = "true" > 4.1.1.< / strong > Configure Key Bindings< / a > < / li > < li class = "chapter-item expanded " > < a href = "default-key-bindings.html" > < strong aria-hidden = "true" > 4.1.2.< / strong > Default Key Bindings< / a > < / li > < li class = "chapter-item expanded " > < a href = "debug-key-bindings.html" > < strong aria-hidden = "true" > 4.1.3.< / strong > Debug Key Bindings< / a > < / li > < / ol > < / li > < li class = "chapter-item expanded " > < a href = "node-type.html" > < strong aria-hidden = "true" > 4.2.< / strong > Node Type< / a > < / li > < li class = "chapter-item expanded " > < a href = "layout.html" > < strong aria-hidden = "true" > 4.3.< / strong > Layout< / a > < / li > < li class = "chapter-item expanded " > < a href = "mode.html" > < strong aria-hidden = "true" > 4.4.< / strong > Mode< / a > < / li > < li class = "chapter-item expanded " > < a href = "message.html" > < strong aria-hidden = "true" > 4.5.< / strong > Message< / a > < / li > < li > < ol class = "section" > < li class = "chapter-item expanded " > < a href = "messages.html" > < strong aria-hidden = "true" > 4.5.1.< / strong > Full List of Messages< / a > < / li > < li class = "chapter-item expanded " > < a href = "input-operation.html" > < strong aria-hidden = "true" > 4.5.2.< / strong > Input Operation< / a > < / li > < / ol > < / li > < li class = "chapter-item expanded " > < a href = "borders.html" > < strong aria-hidden = "true" > 4.6.< / strong > Borders< / a > < / li > < li class = "chapter-item expanded " > < a href = "style.html" > < strong aria-hidden = "true" > 4.7.< / strong > Style< / a > < / li > < li class = "chapter-item expanded " > < a href = "sorting.html" > < strong aria-hidden = "true" > 4.8.< / strong > Sorting< / a > < / li > < li class = "chapter-item expanded " > < a href = "filtering.html" > < strong aria-hidden = "true" > 4.9.< / strong > Filtering< / a > < / li > < li class = "chapter-item expanded " > < a href = "column-renderer.html" > < strong aria-hidden = "true" > 4.10.< / strong > Column Renderer< / a > < / li > < li class = "chapter-item expanded " > < a href = "lua-function-calls.html" > < strong aria-hidden = "true" > 4.11.< / strong > Lua Function Calls< / a > < / li > < li class = "chapter-item expanded " > < a href = "environment-variables-and-pipes.html" > < strong aria-hidden = "true" > 4.12.< / strong > Environment Variables and Pipes< / a > < / li > < / ol > < / li > < li class = "chapter-item expanded " > < a href = "awesome-hacks.html" class = "active" > < strong aria-hidden = "true" > 5.< / strong > Awesome Hacks< / a > < / li > < li class = "chapter-item expanded " > < a href = "plugin.html" > < strong aria-hidden = "true" > 6.< / strong > Plugin< / a > < / li > < li > < ol class = "section" > < li class = "chapter-item expanded " > < a href = "installing-plugins.html" > < strong aria-hidden = "true" > 6.1.< / strong > Installing Plugins< / a > < / li > < li class = "chapter-item expanded " > < a href = "writing-plugins.html" > < strong aria-hidden = "true" > 6.2.< / strong > Writing Plug
2022-04-16 07:40:39 +00:00
<!-- EthicalAds -->
< div
id="docs-sidebar-bottom"
class="dark flat"
data-ea-publisher="xplrdev"
data-ea-type="image"
>< / div >
2022-05-23 06:36:33 +00:00
2022-04-16 07:40:39 +00:00
< / div >
< div id = "sidebar-resize-handle" class = "sidebar-resize-handle" > < / div >
< / nav >
< div id = "page-wrapper" class = "page-wrapper" >
< div class = "page" >
< div id = "menu-bar-hover-placeholder" > < / div >
< div id = "menu-bar" class = "menu-bar sticky bordered" >
< div class = "left-buttons" >
< button id = "sidebar-toggle" class = "icon-button" type = "button" title = "Toggle Table of Contents" aria-label = "Toggle Table of Contents" aria-controls = "sidebar" >
< i class = "fa fa-bars" > < / i >
< / button >
< button id = "theme-toggle" class = "icon-button" type = "button" title = "Change theme" aria-label = "Change theme" aria-haspopup = "true" aria-expanded = "false" aria-controls = "theme-list" >
< i class = "fa fa-paint-brush" > < / i >
< / button >
< ul id = "theme-list" class = "theme-popup" aria-label = "Themes" role = "menu" >
< li role = "none" > < button role = "menuitem" class = "theme" id = "light" > Light< / button > < / li >
< li role = "none" > < button role = "menuitem" class = "theme" id = "rust" > Rust< / button > < / li >
< li role = "none" > < button role = "menuitem" class = "theme" id = "coal" > Coal< / button > < / li >
< li role = "none" > < button role = "menuitem" class = "theme" id = "navy" > Navy< / button > < / li >
< li role = "none" > < button role = "menuitem" class = "theme" id = "ayu" > Ayu< / button > < / li >
< / ul >
< button id = "search-toggle" class = "icon-button" type = "button" title = "Search. (Shortkey: s)" aria-label = "Toggle Searchbar" aria-expanded = "false" aria-keyshortcuts = "S" aria-controls = "searchbar" >
< i class = "fa fa-search" > < / i >
< / button >
< / div >
< h1 class = "menu-title" > xplr book< / h1 >
< div class = "right-buttons" >
< a href = "print.html" title = "Print this book" aria-label = "Print this book" >
< i id = "print-button" class = "fa fa-print" > < / i >
< / a >
< a href = "https://github.com/sayanarijit/xplr" title = "Git repository" aria-label = "Git repository" >
< i id = "git-repository-button" class = "fa fa-github" > < / i >
< / a >
< a href = "https://github.com/sayanarijit/xplr/edit/main/docs/en/src/awesome-hacks.md" title = "Suggest an edit" aria-label = "Suggest an edit" >
< i id = "git-edit-button" class = "fa fa-edit" > < / i >
< / a >
< / div >
< / div >
< div id = "search-wrapper" class = "hidden" >
< form id = "searchbar-outer" class = "searchbar-outer" >
< input type = "search" id = "searchbar" name = "searchbar" placeholder = "Search this book ..." aria-controls = "searchresults-outer" aria-describedby = "searchresults-header" >
< / form >
< div id = "searchresults-outer" class = "searchresults-outer hidden" >
< div id = "searchresults-header" class = "searchresults-header" > < / div >
< ul id = "searchresults" >
< / ul >
< / div >
< / div >
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
< script type = "text/javascript" >
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
});
< / script >
< div id = "content" class = "content" >
< main >
< h1 id = "awesome-hacks" > < a class = "header" href = "#awesome-hacks" > Awesome Hacks< / a > < / h1 >
< p > Here's a list of cool xplr hacks, i.e. snippets of code that you can just copy
and paste into your < a href = "configuration.html" > configuration< / a > or the appropriate file, that are
too small or too niche for a full fledge < a href = "plugin.html" > plugin< / a > .< / p >
< p > Do you have something cool to share?< / p >
< p > < a href = "https://github.com/sayanarijit/xplr/edit/main/docs/en/src/awesome-hacks.md" > Edit this file< / a > or < a href = "https://github.com/sayanarijit/xplr/discussions/categories/show-and-tell" > share them here< / a > or < a href = "community.html" > let us know< / a > .< / p >
< h3 id = "cd-on-quit" > < a class = "header" href = "#cd-on-quit" > cd on quit< / a > < / h3 >
< p > Change directory using xplr.< / p >
< details >
< summary > Expand for details< / summary >
< ul >
< li > Author: < a href = "https://github.com/sayanarijit" > @sayanarijit< / a > < / li >
< li > Tested on: Linux< / li >
< / ul >
< p > With this alias set, you can navigate directories using xplr by entering
xcd command, and when you quit by pressing enter, you will enter the
directory.< / p >
< p > You can of course, quit with plain Quit (i.e. by pressing q) to
gracefully cancel " cd on quit" .< / p >
< pre > < code class = "language-bash" > alias xcd='cd " $(xplr --print-pwd-as-result)" '
< / code > < / pre >
< / details >
< h3 id = "spawn-multiple-sessions-in-different-tabs-iterm2" > < a class = "header" href = "#spawn-multiple-sessions-in-different-tabs-iterm2" > Spawn multiple sessions in different tabs (iTerm2)< / a > < / h3 >
< p > Creating a new session that starts with iTerm2.< / p >
< details >
< summary > Expand for details< / summary >
< ul >
< li > Author: < a href = "https://github.com/lmburns" > @lmburns< / a > < / li >
< li > Requires: iTerm2< / li >
< li > Tested on: MacOS< / li >
< / ul >
< pre > < code class = "language-lua" > xplr.config.modes.builtin.default.key_bindings.on_key[" ctrl-n" ] = {
help = " new session" ,
messages = {
{ BashExecSilently = [[
osascript < < EOF
tell application " iTerm2"
tell current window
create tab with default profile
tell current session to write text " xplr"
end tell
end tell
]]
},
},
}
< / code > < / pre >
< / details >
< h3 id = "bookmark" > < a class = "header" href = "#bookmark" > Bookmark< / a > < / h3 >
< p > Bookmark files using < code > m< / code > and fuzzy search bookmarks using backtick.< / p >
< details >
< summary > Expand for details< / summary >
< p > < a href = "https://gifyu.com/image/rGSR" > < img src = "https://s4.gifyu.com/images/xplr-bookmark.gif" alt = "xplr-bookmark.gif" / > < / a > < / p >
< ul >
< li > Author: < a href = "https://github.com/sayanarijit" > @sayanarijit< / a > < / li >
< li > Requires: fzf< / li >
< li > Tested on: Linux< / li >
< / ul >
< pre > < code class = "language-lua" > xplr.config.modes.builtin.default.key_bindings.on_key.m = {
help = " bookmark" ,
messages = {
{
BashExecSilently = [===[
PTH=" ${XPLR_FOCUS_PATH:?}"
if echo " ${PTH:?}" > > " ${XPLR_SESSION_PATH:?}/bookmarks" ; then
echo " LogSuccess: ${PTH:?} added to bookmarks" > > " ${XPLR_PIPE_MSG_IN:?}"
else
echo " LogError: Failed to bookmark ${PTH:?}" > > " ${XPLR_PIPE_MSG_IN:?}"
fi
]===],
},
},
}
xplr.config.modes.builtin.default.key_bindings.on_key[" `" ] = {
help = " go to bookmark" ,
messages = {
{
BashExec = [===[
PTH=$(cat " ${XPLR_SESSION_PATH:?}/bookmarks" | fzf --no-sort)
if [ " $PTH" ]; then
echo FocusPath: " '" ${PTH:?}" '" > > " ${XPLR_PIPE_MSG_IN:?}"
fi
]===],
},
},
}
< / code > < / pre >
< / details >
< h3 id = "persistent-multi-session-bookmark" > < a class = "header" href = "#persistent-multi-session-bookmark" > Persistent, multi-session bookmark< / a > < / h3 >
< p > A bookmark mode that allows for a bookmark file to be used throughout multiples
sessions. It is set to the environment variable < code > $XPLR_BOOKMARK_FILE< / code > . A
bookmark can be added, deleted, or jumped to.< / p >
< details >
< summary > Expand for details< / summary >
< ul >
< li > Author: < a href = "https://github.com/lmburns" > @lmburns< / a > < / li >
< li > Requires: fzf, sd< / li >
< li > Tested on: MacOS< / li >
< / ul >
< pre > < code class = "language-lua" > -- Bookmark: mode binding
xplr.config.modes.custom.bookmark = {
name = " bookmark" ,
key_bindings = {
on_key = {
m = {
help = " bookmark dir" ,
messages = {
{ BashExecSilently = [[
PTH=" ${XPLR_FOCUS_PATH:?}"
if [ -d " ${PTH}" ]; then
PTH=" ${PTH}"
elif [ -f " ${PTH}" ]; then
PTH=" $(dirname " ${PTH}" )"
fi
if echo " ${PTH:?}" > > " ${XPLR_BOOKMARK_FILE:?}" ; then
echo " LogSuccess: ${PTH:?} added to bookmarks" > > " ${XPLR_PIPE_MSG_IN:?}"
else
echo " LogError: Failed to bookmark ${PTH:?}" > > " ${XPLR_PIPE_MSG_IN:?}"
fi
]]
},
},
},
g = {
help = " go to bookmark" ,
messages = {
{
BashExec = [===[
PTH=$(cat " ${XPLR_BOOKMARK_FILE:?}" | fzf --no-sort)
if [ " $PTH" ]; then
echo FocusPath: " '" ${PTH:?}" '" > > " ${XPLR_PIPE_MSG_IN:?}"
fi
]===]
},
},
},
d = {
help = " delete bookmark" ,
messages = {
{ BashExec = [[
PTH=$(cat " ${XPLR_BOOKMARK_FILE:?}" | fzf --no-sort)
sd " $PTH\n" " " " ${XPLR_BOOKMARK_FILE:?}"
]]
},
},
},
esc = {
help = " cancel" ,
messages = {
" PopMode" ,
},
},
},
},
}
< / code > < / pre >
< / details >
< h3 id = "another-bookmark-manager-type-thing-taken-from-wfxrs-zsh-plugin" > < a class = "header" href = "#another-bookmark-manager-type-thing-taken-from-wfxrs-zsh-plugin" > Another bookmark manager type thing, taken from < a href = "https://github.com/wfxr/formarks" > wfxr's zsh plugin< / a > .< / a > < / h3 >
< p > Another bookmark manager type thing, taken from < a href = "https://github.com/wfxr/formarks" > wfxr's zsh plugin< / a > which has colored output with fzf.< / p >
< details >
< summary > Expand for details< / summary >
< ul >
< li > Author: < a href = "https://github.com/lmburns" > @lmburns< / a > < / li >
< li > Requires: fzf, exa< / li >
< li > Tested on: MacOS< / li >
< / ul >
< pre > < code class = "language-lua" > xplr.config.modes.builtin.go_to.key_bindings.on_key.b = {
help = " bookmark jump" ,
messages = {
" PopMode" ,
{ BashExec = [===[
field='\(\S\+\s*\)'
esc=$(printf '\033')
N=" ${esc}[0m"
R=" ${esc}[31m"
G=" ${esc}[32m"
Y=" ${esc}[33m"
B=" ${esc}[34m"
pattern=" s#^${field}${field}${field}${field}#$Y\1$R\2$N\3$B\4$N#"
PTH=$(sed 's#: # -> #' " $PATHMARKS_FILE" | nl| column -t \
| gsed " ${pattern}" \
| fzf --ansi \
--height '40%' \
--preview=" echo {}|sed 's#.*-> ##'| xargs exa --color=always" \
--preview-window=" right:50%" \
| sed 's#.*-> ##')
if [ " $PTH" ]; then
echo ChangeDirectory: " '" ${PTH:?}" '" > > " ${XPLR_PIPE_MSG_IN:?}"
fi
]===]
},
}
}
< / code > < / pre >
< / details >
< h3 id = "fuzzy-search-history" > < a class = "header" href = "#fuzzy-search-history" > Fuzzy search history< / a > < / h3 >
< p > Fuzzy search the last visited directories.< / p >
< details >
< summary > Expand for details< / summary >
< ul >
< li > Author: < a href = "https://github.com/sayanarijit" > @sayanarijit< / a > < / li >
< li > Requires: fzf< / li >
< li > Tested on: Linux< / li >
< / ul >
< pre > < code class = "language-lua" > xplr.config.modes.builtin.go_to.key_bindings.on_key.h = {
help = " history" ,
messages = {
" PopMode" ,
{
BashExec = [===[
PTH=$(cat " ${XPLR_PIPE_HISTORY_OUT:?}" | sort -u | fzf --no-sort)
if [ " $PTH" ]; then
echo ChangeDirectory: " '" ${PTH:?}" '" > > " ${XPLR_PIPE_MSG_IN:?}"
fi
]===],
},
},
}
< / code > < / pre >
< / details >
< h3 id = "batch-rename" > < a class = "header" href = "#batch-rename" > Batch rename< / a > < / h3 >
< p > Batch rename the selected or visible files and directories in $PWD.< / p >
< details >
< summary > Expand for details< / summary >
< p > < a href = "https://gifyu.com/image/rGbo" > < img src = "https://s4.gifyu.com/images/xplr-rename.gif" alt = "xplr-rename.gif" / > < / a > < / p >
< ul >
< li > Author: < a href = "https://github.com/sayanarijit" > @sayanarijit< / a > < / li >
< li > Requires: < a href = "https://github.com/marcusbuffett/pipe-rename" > pipe-rename< / a > < / li >
< li > Tested on: Linux< / li >
< / ul >
< pre > < code class = "language-lua" > xplr.config.modes.builtin.default.key_bindings.on_key.R = {
help = " batch rename" ,
messages = {
{
BashExec = [===[
SELECTION=$(cat " ${XPLR_PIPE_SELECTION_OUT:?}" )
NODES=${SELECTION:-$(cat " ${XPLR_PIPE_DIRECTORY_NODES_OUT:?}" )}
if [ " $NODES" ]; then
echo -e " $NODES" | renamer
echo ExplorePwdAsync > > " ${XPLR_PIPE_MSG_IN:?}"
fi
]===],
},
},
}
< / code > < / pre >
< / details >
< h3 id = "serve-pwd" > < a class = "header" href = "#serve-pwd" > Serve $PWD< / a > < / h3 >
< p > Serve $PWD using a static web server via LAN.< / p >
< details >
< summary > Expand for details< / summary >
< ul >
< li > Author: < a href = "https://github.com/sayanarijit" > @sayanarijit< / a > < / li >
< li > Requires: < a href = "https://github.com/weihanglo/sfz" > sfz< / a > , fzf< / li >
< li > Tested on: Linux< / li >
< / ul >
< pre > < code class = "language-lua" > xplr.config.modes.builtin.default.key_bindings.on_key.S = {
help = " serve $PWD" ,
messages = {
{
BashExec = [===[
IP=$(ip addr | grep -w inet | cut -d/ -f1 | grep -Eo '[0-9]{1,3}\.[0-9]{ 1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | fzf --prompt 'Select IP > ')
echo " IP: ${IP:?}"
read -p " Port (default 5000): " PORT
echo
sfz --all --cors --no-ignore --bind ${IP:?} --port ${PORT:-5000} . &
sleep 1 & & read -p '[press enter to exit]'
kill -9 %1
]===],
},
},
}
< / code > < / pre >
< / details >
2022-05-19 07:35:30 +00:00
< h3 id = "image-viewer-imv" > < a class = "header" href = "#image-viewer-imv" > Image viewer (imv)< / a > < / h3 >
< p > Preview images using < a href = "https://sr.ht/%7Eexec64/imv" > imv< / a > .< / p >
< details >
< summary > Expand for details< / summary >
< ul >
< li > Author: < a href = "https://github.com/sayanarijit" > @sayanarijit< / a > < / li >
< li > Requires: < a href = "https://sr.ht/%7Eexec64/imv" > imv< / a > , < a href = "https://www.semicomplete.com/projects/xdotool" > xdotool< / a > < / li >
< li > Tested on: Linux< / li >
< / ul >
< pre > < code class = "language-lua" > xplr.config.modes.builtin.default.key_bindings.on_key.P = {
help = " preview" ,
messages = {
{
BashExecSilently = [===[
FIFO_PATH=" /tmp/xplr.fifo"
if [ -e " $FIFO_PATH" ]; then
echo StopFifo > > " $XPLR_PIPE_MSG_IN"
rm " $FIFO_PATH"
else
mkfifo " $FIFO_PATH"
" $HOME/.local/bin/imv-open.sh" " $FIFO_PATH" " $XPLR_FOCUS_PATH" &
echo " StartFifo: '$FIFO_PATH'" > > " $XPLR_PIPE_MSG_IN"
fi
]===],
},
},
}
< / code > < / pre >
< p > $HOME/.local/bin/imv-open.sh< / p >
< pre > < code class = "language-bash" > #!/usr/bin/env bash
FIFO_PATH=" $1"
IMAGE=" $2"
MAINWINDOW=" $(xdotool getactivewindow)"
IMV_PID=" $(pgrep imv)"
if [ ! " $IMV_PID" ]; then
imv " $IMAGE" &
IMV_PID=$!
fi
sleep 0.5
xdotool windowactivate " $MAINWINDOW"
while read -r path; do
imv-msg " $IMV_PID" close all
imv-msg " $IMV_PID" open " $path"
done < " $FIFO_PATH"
imv-msg " $IMV_PID" quit
[ -e " $FIFO_PATH" ] & & rm -f " $FIFO_PATH"
< / code > < / pre >
< / details >
2022-05-26 10:48:03 +00:00
< h3 id = "text-preview-pane" > < a class = "header" href = "#text-preview-pane" > Text preview pane< / a > < / h3 >
< p > Preview text files in a native xplr pane (should be fast enough).< / p >
< details >
< summary > Expand for details< / summary >
< ul >
< li > Author: < a href = "https://github.com/sayanarijit" > @sayanarijit< / a > < / li >
< li > Requires: none< / li >
< li > Tested on: Linux< / li >
< / ul >
< pre > < code class = "language-lua" > local function stat(node)
return node.mime_essence
end
local function read(path, lines)
local out = " "
local p = io.open(path)
if p == nil then
return stat(path)
end
local i = 0
for line in p:lines() do
out = out .. line .. " \n"
if i == lines then
break
end
i = i + 1
end
p:close()
return out
end
xplr.config.layouts.builtin.default = {
Horizontal = {
config = {
constraints = {
{ Percentage = 60 },
{ Percentage = 40 },
},
},
splits = {
" Table" ,
{
CustomContent = {
title = " preview" ,
2022-05-26 10:53:15 +00:00
body = { DynamicParagraph = { render = " custom.preview_pane.render" } },
2022-05-26 10:48:03 +00:00
},
},
},
},
}
2022-05-26 10:53:15 +00:00
xplr.fn.custom.preview_pane = {}
xplr.fn.custom.preview_pane.render = function(ctx)
2022-05-26 10:48:03 +00:00
local n = ctx.app.focused_node
if n.canonical then
n = n.canonical
end
if n then
2022-05-26 10:53:15 +00:00
if n.is_file then
2022-05-26 10:48:03 +00:00
return read(n.absolute_path, ctx.layout_size.height)
else
return stat(n)
end
else
return " "
end
end
< / code > < / pre >
< / details >
2022-07-16 13:21:44 +00:00
< h3 id = "tere-navigation" > < a class = "header" href = "#tere-navigation" > Tere Navigation< / a > < / h3 >
< p > Navigate using the < a href = "https://github.com/mgunyho/tere" > tere< / a > file explorer (defaults to type-to-nav system).< / p >
< details >
< summary > Expand for details< / summary >
< ul >
< li > Author: < a href = "https://github.com/sayanarijit" > @sayanarijit< / a > < / li >
< li > Requires: < a href = "https://github.com/mgunyho/tere" > tere< / a > < / li >
< li > Tested on: Linux< / li >
< / ul >
< pre > < code class = "language-lua" > xplr.config.modes.builtin.default.key_bindings.on_key.T = {
help = " tere nav" ,
messages = {
{ BashExec = [[echo ChangeDirectory: " '" $(tere)" '" > > " $XPLR_PIPE_MSG_IN" ]] },
},
}
< / code > < / pre >
< / details >
2022-04-16 07:40:39 +00:00
< h2 id = "also-see" > < a class = "header" href = "#also-see" > Also See:< / a > < / h2 >
< ul >
< li > < a href = "awesome-plugins.html" > Awesome Plugins< / a > < / li >
< li > < a href = "awesome-integrations.html" > Awesome Integrations< / a > < / li >
< / ul >
< / main >
< nav class = "nav-wrapper" aria-label = "Page navigation" >
<!-- Mobile navigation buttons -->
< a rel = "prev" href = "environment-variables-and-pipes.html" class = "mobile-nav-chapters previous" title = "Previous chapter" aria-label = "Previous chapter" aria-keyshortcuts = "Left" >
< i class = "fa fa-angle-left" > < / i >
< / a >
< a rel = "next" href = "plugin.html" class = "mobile-nav-chapters next" title = "Next chapter" aria-label = "Next chapter" aria-keyshortcuts = "Right" >
< i class = "fa fa-angle-right" > < / i >
< / a >
< div style = "clear: both" > < / div >
< / nav >
< / div >
< / div >
< nav class = "nav-wide-wrapper" aria-label = "Page navigation" >
< a rel = "prev" href = "environment-variables-and-pipes.html" class = "nav-chapters previous" title = "Previous chapter" aria-label = "Previous chapter" aria-keyshortcuts = "Left" >
< i class = "fa fa-angle-left" > < / i >
< / a >
< a rel = "next" href = "plugin.html" class = "nav-chapters next" title = "Next chapter" aria-label = "Next chapter" aria-keyshortcuts = "Right" >
< i class = "fa fa-angle-right" > < / i >
< / a >
< / nav >
< / div >
< script type = "text/javascript" >
window.playground_copyable = true;
< / script >
< script src = "elasticlunr.min.js" type = "text/javascript" charset = "utf-8" > < / script >
< script src = "mark.min.js" type = "text/javascript" charset = "utf-8" > < / script >
< script src = "searcher.js" type = "text/javascript" charset = "utf-8" > < / script >
< script src = "clipboard.min.js" type = "text/javascript" charset = "utf-8" > < / script >
< script src = "highlight.js" type = "text/javascript" charset = "utf-8" > < / script >
< script src = "book.js" type = "text/javascript" charset = "utf-8" > < / script >
<!-- Custom JS scripts -->
< / body >
< / html >