Procházet zdrojové kódy

Simplify default regexes

master
lostd před 10 roky
rodič
revize
3f1a93a598
2 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. +1
    -1
      config.def.h
  2. +2
    -2
      noice.c

+ 1
- 1
config.def.h Zobrazit soubor

@@ -8,7 +8,7 @@ struct assoc assocs[] = {
{ "\\.(html|svg)$", "firefox" },
{ "\\.pdf$", "mupdf" },
{ "\\.sh$", "sh" },
{ ".*", "less" },
{ ".", "less" },
};

struct key bindings[] = {


+ 2
- 2
noice.c Zobrazit soubor

@@ -758,9 +758,9 @@ main(int argc, char *argv[])
char *ifilter;

if (getuid() == 0)
ifilter = ".*";
ifilter = ".";
else
ifilter = "^[^.].*"; /* Hide dotfiles */
ifilter = "^[^.]"; /* Hide dotfiles */

if (argv[1] != NULL) {
ipath = argv[1];


Načítá se…
Zrušit
Uložit