Skip to content

Commit

Permalink
Reload file info after mark-save/mark-remove (#1544)
Browse files Browse the repository at this point in the history
  • Loading branch information
joelim-work authored Dec 26, 2023
1 parent 12ce649 commit 27cbf94
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions eval.go
Original file line number Diff line number Diff line change
Expand Up @@ -1451,16 +1451,20 @@ func insert(app *app, arg string) {
app.nav.marks[arg] = app.nav.currDir().path
if err := app.nav.writeMarks(); err != nil {
app.ui.echoerrf("mark-save: %s", err)
return
}
if gSingleMode {
if err := app.nav.sync(); err != nil {
app.ui.echoerrf("mark-save: %s", err)
return
}
} else {
if err := remote("send sync"); err != nil {
app.ui.echoerrf("mark-save: %s", err)
return
}
}
app.ui.loadFileInfo(app.nav)
case app.ui.cmdPrefix == "mark-load: ":
normal(app)

Expand Down Expand Up @@ -1505,12 +1509,15 @@ func insert(app *app, arg string) {
if gSingleMode {
if err := app.nav.sync(); err != nil {
app.ui.echoerrf("mark-remove: %s", err)
return
}
} else {
if err := remote("send sync"); err != nil {
app.ui.echoerrf("mark-remove: %s", err)
return
}
}
app.ui.loadFileInfo(app.nav)
case app.ui.cmdPrefix == ":" && len(app.ui.cmdAccLeft) == 0:
switch arg {
case "!", "$", "%", "&":
Expand Down

0 comments on commit 27cbf94

Please sign in to comment.