summaryrefslogtreecommitdiffstats
path: root/assets
diff options
context:
space:
mode:
authorBrooks J Rady <b.j.rady@gmail.com>2021-02-09 17:27:36 +0000
committerBrooks J Rady <b.j.rady@gmail.com>2021-02-09 17:27:36 +0000
commitfd001860f4b08920bb6201af723216031d89020f (patch)
tree12d5a666b6030ba18d966be6660523440710b7d8 /assets
parent14783c2b2c3bcd3b4b01e72c46d6af3ecbdd203c (diff)
Push the mosaic folder down a directory
Diffstat (limited to 'assets')
-rw-r--r--assets/completions/_mosaic45
-rw-r--r--assets/completions/mosaic.bash69
-rw-r--r--assets/completions/mosaic.fish8
-rw-r--r--assets/demo.gifbin3549260 -> 0 bytes
-rw-r--r--assets/layouts/default.yaml8
-rw-r--r--assets/layouts/strider.yaml14
-rw-r--r--assets/logo.pngbin218189 -> 0 bytes
-rw-r--r--assets/plugins/status-bar.wasmbin509798 -> 0 bytes
-rw-r--r--assets/plugins/strider.wasmbin528778 -> 0 bytes
9 files changed, 0 insertions, 144 deletions
diff --git a/assets/completions/_mosaic b/assets/completions/_mosaic
deleted file mode 100644
index 9587c2bf8..000000000
--- a/assets/completions/_mosaic
+++ /dev/null
@@ -1,45 +0,0 @@
-#compdef mosaic
-
-autoload -U is-at-least
-
-_mosaic() {
- typeset -A opt_args
- typeset -a _arguments_options
- local ret=1
-
- if is-at-least 5.2; then
- _arguments_options=(-s -S -C)
- else
- _arguments_options=(-s -C)
- fi
-
- local context curcontext="$curcontext" state line
- _arguments "${_arguments_options[@]}" \
-'-s+[Send "split (direction h == horizontal / v == vertical)" to active mosaic session]' \
-'--split=[Send "split (direction h == horizontal / v == vertical)" to active mosaic session]' \
-'-o+[Send "open file in new pane" to active mosaic session]' \
-'--open-file=[Send "open file in new pane" to active mosaic session]' \
-'--max-panes=[Maximum panes on screen, caution: opening more panes will close old ones]' \
-'-l+[Path to a layout yaml file]' \
-'--layout=[Path to a layout yaml file]' \
-'-m[Send "move focused pane" to active mosaic session]' \
-'--move-focus[Send "move focused pane" to active mosaic session]' \
-'-d[]' \
-'--debug[]' \
-'-h[Prints help information]' \
-'--help[Prints help information]' \
-'-V[Prints version information]' \
-'--version[Prints version information]' \
-&& ret=0
-
-}
-
-(( $+functions[_mosaic_commands] )) ||
-_mosaic_commands() {
- local commands; commands=(
-
- )
- _describe -t commands 'mosaic commands' commands "$@"
-}
-
-_mosaic "$@" \ No newline at end of file
diff --git a/assets/completions/mosaic.bash b/assets/completions/mosaic.bash
deleted file mode 100644
index 7b6219c0b..000000000
--- a/assets/completions/mosaic.bash
+++ /dev/null
@@ -1,69 +0,0 @@
-_mosaic() {
- local i cur prev opts cmds
- COMPREPLY=()
- cur="${COMP_WORDS[COMP_CWORD]}"
- prev="${COMP_WORDS[COMP_CWORD-1]}"
- cmd=""
- opts=""
-
- for i in ${COMP_WORDS[@]}
- do
- case "${i}" in
- mosaic)
- cmd="mosaic"
- ;;
-
- *)
- ;;
- esac
- done
-
- case "${cmd}" in
- mosaic)
- opts=" -m -d -h -V -s -o -l --move-focus --debug --help --version --split --open-file --max-panes --layout "
- if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
- COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
- return 0
- fi
- case "${prev}" in
-
- --split)
- COMPREPLY=($(compgen -f "${cur}"))
- return 0
- ;;
- -s)
- COMPREPLY=($(compgen -f "${cur}"))
- return 0
- ;;
- --open-file)
- COMPREPLY=($(compgen -f "${cur}"))
- return 0
- ;;
- -o)
- COMPREPLY=($(compgen -f "${cur}"))
- return 0
- ;;
- --max-panes)
- COMPREPLY=($(compgen -f "${cur}"))
- return 0
- ;;
- --layout)
- COMPREPLY=($(compgen -f "${cur}"))
- return 0
- ;;
- -l)
- COMPREPLY=($(compgen -f "${cur}"))
- return 0
- ;;
- *)
- COMPREPLY=()
- ;;
- esac
- COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
- return 0
- ;;
-
- esac
-}
-
-complete -F _mosaic -o bashdefault -o default mosaic
diff --git a/assets/completions/mosaic.fish b/assets/completions/mosaic.fish
deleted file mode 100644
index 925d6432e..000000000
--- a/assets/completions/mosaic.fish
+++ /dev/null
@@ -1,8 +0,0 @@
-complete -c mosaic -n "__fish_use_subcommand" -s s -l split -d 'Send "split (direction h == horizontal / v == vertical)" to active mosaic session'
-complete -c mosaic -n "__fish_use_subcommand" -s o -l open-file -d 'Send "open file in new pane" to active mosaic session'
-complete -c mosaic -n "__fish_use_subcommand" -l max-panes -d 'Maximum panes on screen, caution: opening more panes will close old ones'
-complete -c mosaic -n "__fish_use_subcommand" -s l -l layout -d 'Path to a layout yaml file'
-complete -c mosaic -n "__fish_use_subcommand" -s m -l move-focus -d 'Send "move focused pane" to active mosaic session'
-complete -c mosaic -n "__fish_use_subcommand" -s d -l debug
-complete -c mosaic -n "__fish_use_subcommand" -s h -l help -d 'Prints help information'
-complete -c mosaic -n "__fish_use_subcommand" -s V -l version -d 'Prints version information'
diff --git a/assets/demo.gif b/assets/demo.gif
deleted file mode 100644
index 9258751e4..000000000
--- a/assets/demo.gif
+++ /dev/null
Binary files differ
diff --git a/assets/layouts/default.yaml b/assets/layouts/default.yaml
deleted file mode 100644
index a3987e50b..000000000
--- a/assets/layouts/default.yaml
+++ /dev/null
@@ -1,8 +0,0 @@
----
-direction: Horizontal
-parts:
- - direction: Vertical
- - direction: Vertical
- split_size:
- Fixed: 1
- plugin: status-bar
diff --git a/assets/layouts/strider.yaml b/assets/layouts/strider.yaml
deleted file mode 100644
index e33f516a5..000000000
--- a/assets/layouts/strider.yaml
+++ /dev/null
@@ -1,14 +0,0 @@
----
-direction: Horizontal
-parts:
- - direction: Vertical
- parts:
- - direction: Horizontal
- split_size:
- Percent: 20
- plugin: strider
- - direction: Horizontal
- - direction: Vertical
- split_size:
- Fixed: 1
- plugin: status-bar \ No newline at end of file
diff --git a/assets/logo.png b/assets/logo.png
deleted file mode 100644
index a36dce061..000000000
--- a/assets/logo.png
+++ /dev/null
Binary files differ
diff --git a/assets/plugins/status-bar.wasm b/assets/plugins/status-bar.wasm
deleted file mode 100644
index 646ad3b5b..000000000
--- a/assets/plugins/status-bar.wasm
+++ /dev/null
Binary files differ
diff --git a/assets/plugins/strider.wasm b/assets/plugins/strider.wasm
deleted file mode 100644
index 77b07b01e..000000000
--- a/assets/plugins/strider.wasm
+++ /dev/null
Binary files differ