# vi: ft=dosini [main] # Enables context sensitive auto-completion. If this is disabled the all # possible completions will be listed. smart_completion = True # Multi-line mode allows breaking up the sql statements into multiple lines. If # this is set to True, then the end of the statements must have a semi-colon. # If this is set to False then sql statements can't be split into multiple # lines. End of line (return) is considered as the end of the statement. multi_line = False # Destructive warning mode will alert you before executing a sql statement # that may cause harm to the database such as "drop table", "drop database" # or "shutdown". destructive_warning = True # log_file location. log_file = ~/.local/share/mycli.log # Default log level. Possible values: "CRITICAL", "ERROR", "WARNING", "INFO" # and "DEBUG". ; log_level = WARNING # Log every query and its results to a file. Enable this by uncommenting the # line below. # audit_log = ~/.mycli-audit.log # Timing of sql statements and table rendering. timing = True # Beep after long-running queries are completed; 0 to disable. beep_after_seconds = 0 # Table format. Possible values: ascii, double, github, # psql, plain, simple, grid, fancy_grid, pipe, orgtbl, rst, mediawiki, html, # latex, latex_booktabs, textile, moinmoin, jira, vertical, tsv, csv. # Recommended: ascii ; table_format = ascii table_format = psql_unicode # Syntax coloring style. Possible values (many support the "-dark" suffix): # manni, igor, xcode, vim, autumn, vs, rrt, native, perldoc, borland, tango, emacs, # friendly, monokai, paraiso, colorful, murphy, bw, pastie, paraiso, trac, default, # fruity. # Screenshots at http://mycli.net/syntax # Can be further modified in [colors] ; syntax_style = default syntax_style = native # Keybindings: Possible values: emacs, vi. # Emacs mode: Ctrl-A is home, Ctrl-E is end. All emacs keybindings are available in the REPL. # When Vi mode is enabled you can use modal editing features offered by Vi in the REPL. key_bindings = vi # Enabling this option will show the suggestions in a wider menu. Thus more items are suggested. wider_completion_menu = False # MySQL prompt # \D - The full current date # \d - Database name # \h - Hostname of the server # \m - Minutes of the current time # \n - Newline # \P - AM/PM # \p - Port # \R - The current time, in 24-hour military time (0-23) # \r - The current time, standard 12-hour time (1-12) # \s - Seconds of the current time # \t - Product type (Percona, MySQL, MariaDB, TiDB) # \A - DSN alias name (from the [alias_dsn] section) # \u - Username # \x1b[...m - insert ANSI escape sequence prompt = '\t \u@\h:\d> ' prompt_continuation = '->' # Skip intro info on startup and outro info on exit less_chatty = true # Use alias from --login-path instead of host name in prompt login_path_as_host = False # Cause result sets to be displayed vertically if they are too wide for the current window, # and using normal tabular format otherwise. (This applies to statements terminated by ; or \G.) auto_vertical_output = true # keyword casing preference. Possible values "lower", "upper", "auto" keyword_casing = auto # disabled pager on startup enable_pager = false # Choose a specific pager pager = 'less' # Custom colors for the completion menu, toolbar, etc. [colors] # Completion menus. Token.Menu.Completions.Completion.Current = "bg:#00aaaa #000000" Token.Menu.Completions.Completion = "bg:#008888 #ffffff" Token.Menu.Completions.MultiColumnMeta = "bg:#aaffff #000000" Token.Menu.Completions.ProgressButton = "bg:#003333" Token.Menu.Completions.ProgressBar = "bg:#00aaaa" # Selected text. Token.SelectedText = "#ffffff bg:#6666aa" # Search matches. (reverse-i-search) Token.SearchMatch = "#ffffff bg:#4444aa" Token.SearchMatch.Current = "#ffffff bg:#44aa44" # The bottom toolbar. Token.Toolbar = "bg:#222222 #aaaaaa" Token.Toolbar.Off = "bg:#222222 #888888" Token.Toolbar.On = "bg:#222222 #ffffff" # Search/arg/system toolbars. Token.Toolbar.Search = noinherit bold Token.Toolbar.Search.Text = nobold Token.Toolbar.System = noinherit bold Token.Toolbar.Arg = noinherit bold Token.Toolbar.Arg.Text = nobold # Favorite queries. [favorite_queries] contentelements = '''SELECT content.uid, content.pid, content.header, pages.uid, pages.title FROM tt_content as content LEFT JOIN pages ON content.pid = pages.uid WHERE content.CType like "%dl%" and content.hidden = 0 and content.deleted = 0 and pages.hidden = 0 and pages.deleted = 0''' pluginrecords = '''SELECT content.uid, content.pid, content.header, pages.uid, pages.title FROM tt_content as content LEFT JOIN pages ON content.pid = pages.uid WHERE content.list_type like "%$1%" and content.hidden = 0 and content.deleted = 0 and pages.hidden = 0 and pages.deleted = 0'''