{"column",0,0,G_OPTION_ARG_INT,&cl_options.goto_column,N_("Set initial column number for the first opened file (useful in conjunction with --line)"),NULL},
{"config",'c',0,G_OPTION_ARG_FILENAME,&alternate_config,N_("Use an alternate configuration directory"),NULL},
{"column",0,0,G_OPTION_ARG_INT,&cl_options.goto_column,N_("Set initial column number to COLUMN for the first opened file (useful in conjunction with --line)"),N_("COLUMN")},
{"generate-tags",'g',0,G_OPTION_ARG_NONE,&generate_tags,N_("Generate global tags file (see documentation)"),NULL},
{"no-preprocessing",'P',0,G_OPTION_ARG_NONE,&no_preprocessing,N_("Don't preprocess C/C++ files when generating tags file"),NULL},
#ifdef HAVE_SOCKET
{"new-instance",'i',0,G_OPTION_ARG_NONE,&cl_options.new_instance,N_("Don't open files in a running instance, force opening a new instance"),NULL},
{"socket-file",0,0,G_OPTION_ARG_FILENAME,&cl_options.socket_filename,N_("Use this socket filename for communication with a running Geany instance"),NULL},
{"socket-file",0,0,G_OPTION_ARG_FILENAME,&cl_options.socket_filename,N_("Use socket filename FILE for communication with a running Geany instance"),N_("FILE")},
{"list-documents",0,0,G_OPTION_ARG_NONE,&cl_options.list_documents,N_("Return a list of open documents in a running Geany instance"),NULL},
#endif
{"line",'l',0,G_OPTION_ARG_INT,&cl_options.goto_line,N_("Set initial line number for the first opened file"),NULL},
{"line",'l',0,G_OPTION_ARG_INT,&cl_options.goto_line,N_("Set initial line number to LINE for the first opened file"),N_("LINE")},
{"no-msgwin",'m',0,G_OPTION_ARG_NONE,&no_msgwin,N_("Don't show message window at startup"),NULL},
{"no-ctags",'n',0,G_OPTION_ARG_NONE,&ignore_global_tags,N_("Don't load auto completion data (see documentation)"),NULL},