stuff
This commit is contained in:
		
							parent
							
								
									673eb86f70
								
							
						
					
					
						commit
						38fc909733
					
				
					 4 changed files with 143 additions and 4 deletions
				
			
		
							
								
								
									
										141
									
								
								fish/dot-config/fish/completions/asdf.fish
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										141
									
								
								fish/dot-config/fish/completions/asdf.fish
									
									
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,141 @@
 | 
			
		|||
set -x asdf_data_dir (
 | 
			
		||||
  if test -n "$ASDF_DATA_DIR"; echo $ASDF_DATA_DIR;
 | 
			
		||||
  else; echo $HOME/.asdf; end)
 | 
			
		||||
 | 
			
		||||
function __fish_asdf_needs_command
 | 
			
		||||
    set -l cmd (commandline -opc)
 | 
			
		||||
    if test (count $cmd) -eq 1
 | 
			
		||||
        return 0
 | 
			
		||||
    end
 | 
			
		||||
    return 1
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
function __fish_asdf_using_command -a current_command
 | 
			
		||||
    set -l cmd (commandline -opc)
 | 
			
		||||
    if test (count $cmd) -gt 1
 | 
			
		||||
        if test $current_command = $cmd[2]
 | 
			
		||||
            return 0
 | 
			
		||||
        end
 | 
			
		||||
    end
 | 
			
		||||
    return 1
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
function __fish_asdf_arg_number -a number
 | 
			
		||||
    set -l cmd (commandline -opc)
 | 
			
		||||
    test (count $cmd) -eq $number
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
function __fish_asdf_arg_at -a number
 | 
			
		||||
    set -l cmd (commandline -opc)
 | 
			
		||||
    echo $cmd[$number]
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
function __fish_asdf_list_versions -a plugin
 | 
			
		||||
    asdf list $plugin 2>/dev/null | string trim | string trim --left --chars '*'
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
function __fish_asdf_list_all -a plugin
 | 
			
		||||
    asdf list-all $plugin 2>/dev/null
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
function __fish_asdf_plugin_list
 | 
			
		||||
    asdf plugin-list 2>/dev/null
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
function __fish_asdf_plugin_list_all
 | 
			
		||||
    asdf plugin-list-all 2>/dev/null
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
function __fish_asdf_list_shims
 | 
			
		||||
    path basename $asdf_data_dir/shims/*
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
# update
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a update -d "Update asdf"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command update; and __fish_asdf_arg_number 2' -l head -d "Updates to master HEAD"
 | 
			
		||||
 | 
			
		||||
# plugin-add completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a plugin-add -d "Add git repo as plugin"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command plugin-add; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list_all | grep -v \'*\' | awk \'{ print $1 }\')'
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command plugin-add; and __fish_asdf_arg_number 3' -a '(__fish_asdf_plugin_list_all | grep (__fish_asdf_arg_at 3) | awk \'{ print $2 }\')'
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command plugin-add; and __fish_asdf_arg_number 4'
 | 
			
		||||
 | 
			
		||||
# plugin-list completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a plugin-list -d "List installed plugins"
 | 
			
		||||
 | 
			
		||||
# plugin-list-all completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a plugin-list-all -d "List all existing plugins"
 | 
			
		||||
 | 
			
		||||
# plugin-remove completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a plugin-remove -d "Remove plugin and package versions"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command plugin-remove; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list)'
 | 
			
		||||
 | 
			
		||||
# plugin-update completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a plugin-update -d "Update plugin"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command plugin-update; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list)'
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command plugin-update; and __fish_asdf_arg_number 2' -a --all
 | 
			
		||||
 | 
			
		||||
# install completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a install -d "Install a specific version of a package"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command install; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list)'
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command install; and __fish_asdf_arg_number 3' -a '(__fish_asdf_list_all (__fish_asdf_arg_at 3))'
 | 
			
		||||
 | 
			
		||||
# uninstall completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a uninstall -d "Remove a specific version of a package"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command uninstall; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list)'
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command uninstall; and __fish_asdf_arg_number 3' -a '(__fish_asdf_list_versions (__fish_asdf_arg_at 3))'
 | 
			
		||||
 | 
			
		||||
# current completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a current -d "Display version set or being used for package"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command current; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list)'
 | 
			
		||||
 | 
			
		||||
# where completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a where -d "Display install path for an installed version"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command where; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list)'
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command where; and __fish_asdf_arg_number 3' -a '(__fish_asdf_list_versions (__fish_asdf_arg_at 3))'
 | 
			
		||||
 | 
			
		||||
# which completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a which -d "Display executable path for a command"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command which; and __fish_asdf_arg_number 2' -a '(__fish_asdf_list_shims)'
 | 
			
		||||
 | 
			
		||||
# latest completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a latest -d "Show latest stable version of a package"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command latest; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list)'
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command latest; and __fish_asdf_arg_number 2' -a --all
 | 
			
		||||
 | 
			
		||||
# list completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a list -d "List installed versions of a package"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command list; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list)'
 | 
			
		||||
 | 
			
		||||
# list-all completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a list-all -d "List all versions of a package"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command list-all; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list)'
 | 
			
		||||
 | 
			
		||||
# reshim completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a reshim -d "Recreate shims for version of a package"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command reshim; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list)'
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command reshim; and __fish_asdf_arg_number 3' -a '(__fish_asdf_list_versions (__fish_asdf_arg_at 3))'
 | 
			
		||||
 | 
			
		||||
# shim-versions completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a shim-versions -d "List the plugins and versions that provide a command"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command shim-versions; and __fish_asdf_arg_number 2' -a '(__fish_asdf_list_shims)'
 | 
			
		||||
 | 
			
		||||
# local completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a local -d "Set local version for a plugin"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command local; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list)'
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command local; and test (count (commandline -opc)) -gt 2' -a '(__fish_asdf_list_versions (__fish_asdf_arg_at 3)) system'
 | 
			
		||||
 | 
			
		||||
# global completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a global -d "Set global version for a plugin"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command global; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list)'
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command global; and test (count (commandline -opc)) -gt 2' -a '(__fish_asdf_list_versions (__fish_asdf_arg_at 3)) system'
 | 
			
		||||
 | 
			
		||||
# shell completion
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a shell -d "Set version for a plugin in current shell session"
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command shell; and __fish_asdf_arg_number 2' -a '(__fish_asdf_plugin_list)'
 | 
			
		||||
complete -f -c asdf -n '__fish_asdf_using_command shell; and test (count (commandline -opc)) -gt 2' -a '(__fish_asdf_list_versions (__fish_asdf_arg_at 3)) system'
 | 
			
		||||
 | 
			
		||||
# misc
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -l help -d "Displays help"
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -a info -d "Print OS, Shell and ASDF debug information"
 | 
			
		||||
complete -f -c asdf -n __fish_asdf_needs_command -l version -d "Displays asdf version"
 | 
			
		||||
| 
						 | 
				
			
			@ -22,4 +22,4 @@ set -x -g CARGO_HOME $HOME/.cargo
 | 
			
		|||
set -x -g PATH $CARGO_HOME/bin $RUSTUP_HOME/bin $HOME/.local/bin $PATH
 | 
			
		||||
 | 
			
		||||
test (command -v zoxide) && zoxide init fish | source
 | 
			
		||||
test -e /opt/asdf-vm/asdf.fish && source /opt/asdf-vm/asdf.fish
 | 
			
		||||
test -e ~/.asdf && source ~/.asdf/asdf.fish
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -24,6 +24,5 @@
 | 
			
		|||
  "playground": { "branch": "master", "commit": "2b81a018a49f8e476341dfcb228b7b808baba68b" },
 | 
			
		||||
  "plenary.nvim": { "branch": "master", "commit": "267282a9ce242bbb0c5dc31445b6d353bed978bb" },
 | 
			
		||||
  "telescope-fzf-native.nvim": { "branch": "main", "commit": "9bc8237565ded606e6c366a71c64c0af25cd7a50" },
 | 
			
		||||
  "telescope.nvim": { "branch": "0.1.x", "commit": "776b509f80dd49d8205b9b0d94485568236d1192" },
 | 
			
		||||
  "zk-nvim": { "branch": "main", "commit": "797618aa07f58ceba6f79fb6e777e8e45c51e1ce" }
 | 
			
		||||
  "telescope.nvim": { "branch": "0.1.x", "commit": "776b509f80dd49d8205b9b0d94485568236d1192" }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -15,7 +15,6 @@ return {
 | 
			
		|||
    },
 | 
			
		||||
    {
 | 
			
		||||
        "hrsh7th/nvim-cmp",
 | 
			
		||||
        event = "InsertEnter",
 | 
			
		||||
        dependencies = {
 | 
			
		||||
            "hrsh7th/cmp-buffer",
 | 
			
		||||
            "hrsh7th/cmp-nvim-lsp",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue