hugo/source
bep bed227886b Add configurable list to ignore files in server watch
The following inside `config.toml` will ignore files ending with `.foo` and `.boo`.

```
watchIgnoreFiles = [ "\\.foo$", "\\.boo$" ]
```

The above is is a list of Reqular Expressions, but note the escaping of the `\` to make TOML happy.

Fixes #1189
2015-06-03 13:38:05 +02:00
..
content_directory_test.go
file.go
file_test.go source: add some test cases for File 2015-03-12 20:50:44 +01:00
filesystem.go Add configurable list to ignore files in server watch 2015-06-03 13:38:05 +02:00
filesystem_test.go
filesystem_unix_test.go
filesystem_windows_test.go
inmemory.go