From 3a1a27a9c22a6af2133a95fd3b4816b5508d2874 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 10 Mar 2025 13:19:02 +0100 Subject: [PATCH] Updated edit.ps1 --- scripts/edit.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/edit.ps1 b/scripts/edit.ps1 index ca85e1b9..f9ba5549 100755 --- a/scripts/edit.ps1 +++ b/scripts/edit.ps1 @@ -28,7 +28,7 @@ function TryEditor { param([string]$editor, [string]$path) if ($path -eq "" ) { $path = Read-Host "Enter the path to the text file" } if (-not(Test-Path "$path" -pathType leaf)) { throw "Can't access file '$path'" } Write-Host "⏳ Editing '$path' by executing " -noNewline -TryEditor "neovim" $path +TryEditor "nvim" $path TryEditor "vim" $path TryEditor "vi" $path TryEditor "nano" $path