mfuentesg / SyncSettings

Sync Settings - The cross-platform solution to keep Sublime Text configuration synchronized
https://mfuentesg.dev/SyncSettings
MIT License
288 stars 38 forks source link

[Feature Request] Allow ignoring folders #191

Closed daggy1234 closed 3 years ago

daggy1234 commented 3 years ago

I use different machines and I would not like to commit any files from Packages/ or linters/. Atm there is no way to add this functionality. Perhaps an ignore_directory entry in the Json?

mfuentesg commented 3 years ago

Sync Settings provides an option whose aim is to ignore files, using wilcards. This option is excluded_files. Take a look to this section in the readme file.

i.e

{
  "excluded_files": [
    "linters/**/*.*"
  ]
}
daggy1234 commented 3 years ago

Oh my bad thanks