Where does TexPad put the ".editorconfig" file? I can't seem to find it.
Thanks.
Location of .editorconfig
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
-
- Posts: 2461
- Joined: Sun Mar 02, 2003 9:22 pm
It doesn't put .editorconfig anywhere. It doesn't support its use.
It stores its configuration in these files:
It stores its configuration in these files:
Code: Select all
%USERPROFILE%\AppData\Roaming\Helios\TextPad\8\
ConfigState.xml
GUIState.xml
-
- Posts: 2461
- Joined: Sun Mar 02, 2003 9:22 pm
.editconfig files aren't for storing TextPad configuration. It's more the opposite: a way to set up TextPad and other editors in a certain way for, say, a particular project.
The help window for the Preferences page that ben_josephs referred to includes a link to the EditorConfig specifications. There's also a more user-friendly version here.
As an example, if you have an .editorconfig file like this in a folder:
then every file you open in TextPad in or below that folder will have the properties:
The help window for the Preferences page that ben_josephs referred to includes a link to the EditorConfig specifications. There's also a more user-friendly version here.
As an example, if you have an .editorconfig file like this in a folder:
Code: Select all
# Sample editorconfig file
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
- Convert new tabs to spaces
- Indent size: 4
- Strip trailing spaces from lines when saving
etc.