ozansz / gls

Minimal file manager with terminal UI #Go

Home Page:https://sazak.io/gls-file-manager-on-terminal-with-go/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

implement create new file shortcut `n`

ozansz opened this issue · comments

Feature Request Summary

The key press event for n should create a new empty file on the current directory. The current directory is the parent directory of the file that's currently selected (on hover) or the same one if the hover is on a directory. The new file's name should be taken from the user by a modal (a simple form modal would be fine)

  • File creation can be simply done by using os.Create()
  • It would be ideal if the file is created with the same permissions as the parent directory
  • Add handler for key press event n in gui/core.go
  • The handler should also add the created file as a node to the root *Node and current *tview.TreeView's tree

I am working on this feature.

This issue can be closed @ozansz.