This website works better with JavaScript.
首頁
探索
說明
登入
Immanuel
/
nnn
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
Simplify default regexes
master
lostd
10 年之前
父節點
b78755bb01
當前提交
3f1a93a598
共有
2 個文件被更改
,包括
3 次插入
和
3 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
config.def.h
+2
-2
noice.c
+ 1
- 1
config.def.h
查看文件
@@ -8,7 +8,7 @@ struct assoc assocs[] = {
{ "\\.(html|svg)$", "firefox" },
{ "\\.pdf$", "mupdf" },
{ "\\.sh$", "sh" },
{ ".
*
", "less" },
{ ".", "less" },
};
struct key bindings[] = {
+ 2
- 2
noice.c
查看文件
@@ -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];
Write
Preview
Loading…
取消
儲存