Skip to content

add --select compatibility flag #3589

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions src/nemo-main-application.c
Original file line number Diff line number Diff line change
Expand Up @@ -656,6 +656,7 @@ nemo_main_application_local_command_line (GApplication *application,
gboolean kill_shell = FALSE;
gboolean no_default_window = FALSE;
gboolean no_desktop_ignored = FALSE;
gboolean select_ignored = FALSE;
gboolean fix_cache = FALSE;
gboolean debug = FALSE;
gchar **remaining = NULL;
Expand All @@ -678,6 +679,8 @@ nemo_main_application_local_command_line (GApplication *application,
{ "no-default-window", 'n', 0, G_OPTION_ARG_NONE, &no_default_window,
N_("Only create windows for explicitly specified URIs."), NULL },
{ "no-desktop", '\0', 0, G_OPTION_ARG_NONE, &no_desktop_ignored,
N_("Ignored argument - left for compatibility only."), NULL },
{ "select", 's', 0, G_OPTION_ARG_NONE, &select_ignored,
N_("Ignored argument - left for compatibility only."), NULL },
{ "tabs", 't', 0, G_OPTION_ARG_NONE, &open_in_tabs,
N_("Open URIs in tabs."), NULL },
Expand Down