mirror of
https://github.com/VectorKappa/dotfiles.git
synced 2025-12-19 16:26:10 +01:00
1.1.0 Added dotfiles from my old PC
This commit is contained in:
12
IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/LICENSE
Normal file
12
IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/LICENSE
Normal file
@@ -0,0 +1,12 @@
|
||||
Copyright (c) 2016, Samantha Marshall
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of Samantha Marshall nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
11
IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/fzf.fish
Normal file
11
IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/fzf.fish
Normal file
@@ -0,0 +1,11 @@
|
||||
function fzf
|
||||
set -l epoch (date "+%s")
|
||||
set -l file_path $TMPDIR/fzf-$epoch.result
|
||||
command fzf $argv >$file_path
|
||||
if test $status -eq 0 -a -s $file_path
|
||||
cat $file_path
|
||||
end
|
||||
if test -e $file_path
|
||||
rm $file_path
|
||||
end
|
||||
end
|
||||
16
IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/fzf.lua
Normal file
16
IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/fzf.lua
Normal file
@@ -0,0 +1,16 @@
|
||||
VERSION = "2.0.0"
|
||||
|
||||
MakeCommand("fzf", "fzf.fzf", 0)
|
||||
|
||||
function fzf()
|
||||
if CurView():CanClose() then
|
||||
RunTermEmulator("fzf", false, true, "fzf.handleFzfOutput")
|
||||
end
|
||||
end
|
||||
|
||||
function handleFzfOutput(output)
|
||||
local strings = import("strings")
|
||||
CurView():Open(strings.TrimSpace(output))
|
||||
end
|
||||
|
||||
AddRuntimeFile("fzf", "help", "help/fzf.md")
|
||||
31
IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/help/fzf.md
Normal file
31
IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/help/fzf.md
Normal file
@@ -0,0 +1,31 @@
|
||||
# About the fzf plugin
|
||||
|
||||
This plugin provides support for opening files via [fzf](https://github.com/junegunn/fzf).
|
||||
# Commands
|
||||
|
||||
The plugin providies the following commands:
|
||||
|
||||
* `fzf`: launch `fzf` to find a file to open.
|
||||
|
||||
|
||||
# Troubleshooting
|
||||
|
||||
There is a [known issue](https://github.com/fish-shell/fish-shell/issues/1362) when using fzf with fish shell. To work around this, you should create a new fish shell function called `fzf` to be trigged instead of the `fzf` command directly. You can copy and past the following snippet into the file:
|
||||
|
||||
$FISH_CONFIG_PATH/functions/fzf.fish
|
||||
|
||||
```
|
||||
function fzf
|
||||
set -l epoch (date "+%s")
|
||||
set -l file_path $TMPDIR/fzf-$epoch.result
|
||||
command fzf $argv >$file_path
|
||||
if test $status -eq 0 -a -s $file_path
|
||||
cat $file_path
|
||||
end
|
||||
if test -e $file_path
|
||||
rm $file_path
|
||||
end
|
||||
end
|
||||
```
|
||||
|
||||
|
||||
23
IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/readme.md
Normal file
23
IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/readme.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# fzf plugin for micro
|
||||
|
||||
This repository holds the [fzf](https://github.com/junegunn/fzf) plugin for [micro](https://github.com/zyedidia/micro)
|
||||
|
||||
# Troubleshooting
|
||||
|
||||
There is a [known issue](https://github.com/fish-shell/fish-shell/issues/1362) when using fzf with fish shell. To work around this, you should create a new fish shell function called `fzf` to be trigged instead of the `fzf` command directly. You can copy and past the following snippet into the file:
|
||||
|
||||
$FISH_CONFIG_PATH/functions/fzf.fish
|
||||
|
||||
```
|
||||
function fzf
|
||||
set -l epoch (date "+%s")
|
||||
set -l file_path $TMPDIR/fzf-$epoch.result
|
||||
command fzf $argv >$file_path
|
||||
if test $status -eq 0 -a -s $file_path
|
||||
cat $file_path
|
||||
end
|
||||
if test -e $file_path
|
||||
rm $file_path
|
||||
end
|
||||
end
|
||||
```
|
||||
16
IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/repo.json
Normal file
16
IMPORTED_FROM_MANJARO/.config/micro/plugins/fzf/repo.json
Normal file
@@ -0,0 +1,16 @@
|
||||
[
|
||||
{
|
||||
"Name": "fzf",
|
||||
"Description": "adds support to opening files via fzf",
|
||||
"Tags": ["fzf"],
|
||||
"Versions": [
|
||||
{
|
||||
"Version": "1.0.5",
|
||||
"Url": "https://github.com/samdmarshall/micro-fzf-plugin/archive/v1.0.5.zip",
|
||||
"Require": {
|
||||
"micro": ">=1.1.2"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user