Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reload file info after mark-save/mark-remove #1544

Merged
merged 1 commit into from
Dec 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions eval.go
Original file line number Diff line number Diff line change
Expand Up @@ -1456,16 +1456,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 @@ -1510,12 +1514,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