reenable dotnet completions

This commit is contained in:
Seymur Bagirov 2024-01-11 16:20:38 +04:00
parent 4ec20d6b6a
commit 4b344dfd99
2 changed files with 17 additions and 17 deletions

View File

@ -158,7 +158,7 @@ dwindle {
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more # See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
pseudotile = yes # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below pseudotile = yes # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
preserve_split = yes # you probably want this preserve_split = yes # you probably want this
special_scale_factor = 0.89 special_scale_factor = 0.89,
} }
master { master {

View File

@ -22,22 +22,22 @@ source <(copilot completion zsh)
# _dotnet_zsh_complete() _dotnet_zsh_complete()
# { {
# local completions=("$(dotnet complete "$words")") local completions=("$(dotnet complete "$words")")
#
# # If the completion list is empty, just continue with filename selection # If the completion list is empty, just continue with filename selection
# if [ -z "$completions" ] if [ -z "$completions" ]
# then then
# _arguments '*::arguments: _normal' _arguments '*::arguments: _normal'
# return return
# fi fi
#
# # This is not a variable assignment, don't remove spaces! # This is not a variable assignment, don't remove spaces!
# _values = "${(ps:\n:)completions}" _values = "${(ps:\n:)completions}"
# } }
#
# compdef _dotnet_zsh_complete dotnet compdef _dotnet_zsh_complete dotnet
# useful plugins # useful plugins
source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh