summaryrefslogtreecommitdiff
path: root/ftypes.go
blob: 145391df5b5a959807902bfd68b4e5ea2f0aee4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
package main

// Supported file types, their extensions, and language-specific settings like
// indentation and LSP commands.

import "path/filepath"

// FileType represents the configuration for a specific programming language.
type FileType struct {
	Name             string   // Display name of the file type.
	Extensions       []string // File extensions (e.g., .go, .py) or filenames (e.g., Makefile).
	UseTabs          bool     // Whether to use tabs for indentation.
	Comment          string   // Single-line comment prefix (e.g., // or #).
	TabWidth         int      // Number of spaces for a tab.
	EnableLSP        bool     // Whether to enable Language Server Protocol support.
	LSPCommand       string   // Executable name of the LSP server.
	LSPCommandArgs   []string // Arguments to pass to the LSP server.
	FormatterCommand string   // External command for formatting the file.
}

// fileTypes is a global list of all supported languages in the editor.
var fileTypes = []*FileType{
	{
		Name:       "Go",
		Extensions: []string{".go"},
		UseTabs:    true,
		Comment:    "//",
		TabWidth:   Config.DefaultTabWidth,
		EnableLSP:  true,
		LSPCommand: "gopls",
	},
	{
		Name:       "C",
		Extensions: []string{".c", ".h"},
		UseTabs:    true,
		Comment:    "//",
		TabWidth:   Config.DefaultTabWidth,
		EnableLSP:  true,
		LSPCommand: "clangd",
	},
	{
		Name:       "C++",
		Extensions: []string{".cpp", ".hpp", ".cc", ".hh", ".cxx", ".hxx"},
		UseTabs:    true,
		Comment:    "//",
		TabWidth:   Config.DefaultTabWidth,
		EnableLSP:  true,
		LSPCommand: "clangd",
	},
	{
		Name:           "JavaScript",
		Extensions:     []string{".js"},
		UseTabs:        true,
		Comment:        "//",
		TabWidth:       Config.DefaultTabWidth,
		EnableLSP:      true,
		LSPCommand:     "typescript-language-server",
		LSPCommandArgs: []string{"--stdio"},
	},
	{
		Name:           "TypeScript",
		Extensions:     []string{".ts"},
		UseTabs:        true,
		Comment:        "//",
		TabWidth:       Config.DefaultTabWidth,
		EnableLSP:      true,
		LSPCommand:     "typescript-language-server",
		LSPCommandArgs: []string{"--stdio"},
	},
	{
		Name:           "TSX",
		Extensions:     []string{".tsx"},
		UseTabs:        true,
		Comment:        "//",
		TabWidth:       Config.DefaultTabWidth,
		EnableLSP:      true,
		LSPCommand:     "typescript-language-server",
		LSPCommandArgs: []string{"--stdio"},
	},
	{
		Name:           "Python",
		Extensions:     []string{".py"},
		UseTabs:        false,
		Comment:        "#",
		TabWidth:       Config.DefaultTabWidth,
		LSPCommand:     "pyright-langserver",
		LSPCommandArgs: []string{"--stdio"},
	},
	{
		Name:       "Bash",
		Extensions: []string{".sh"},
		UseTabs:    true,
		Comment:    "#",
		TabWidth:   Config.DefaultTabWidth,
	},
	{
		Name:       "CSS",
		Extensions: []string{".css"},
		UseTabs:    false,
		Comment:    "//",
		TabWidth:   Config.DefaultTabWidth,
	},
	{
		Name:       "Dockerfile",
		Extensions: []string{".dockerfile", "Dockerfile"},
		UseTabs:    false,
		Comment:    "#",
		TabWidth:   Config.DefaultTabWidth,
	},
	{
		Name:       "HTML",
		Extensions: []string{".html", ".htm"},
		UseTabs:    false,
		Comment:    "",
		TabWidth:   Config.DefaultTabWidth,
	},
	{
		Name:       "Lua",
		Extensions: []string{".lua"},
		UseTabs:    true,
		Comment:    "--",
		TabWidth:   Config.DefaultTabWidth,
	},
	{
		Name:       "Markdown",
		Extensions: []string{".md", ".markdown"},
		UseTabs:    false,
		Comment:    "",
		TabWidth:   Config.DefaultTabWidth,
	},
	{
		Name:       "PHP",
		Extensions: []string{".php"},
		UseTabs:    true,
		Comment:    "//",
		TabWidth:   Config.DefaultTabWidth,
	},
	{
		Name:       "SQL",
		Extensions: []string{".sql"},
		UseTabs:    true,
		Comment:    "--",
		TabWidth:   Config.DefaultTabWidth,
	},
	{
		Name:       "Makefile",
		Extensions: []string{".make", "Makefile", "makefile"},
		UseTabs:    true,
		Comment:    "#",
		TabWidth:   Config.DefaultTabWidth,
	},
	{
		Name:       "Text",
		Extensions: []string{},
		UseTabs:    false,
		Comment:    "",
		TabWidth:   Config.DefaultTabWidth,
	},
}

// getFileType detects the file type based on the filename or extension.
func getFileType(filename string) *FileType {
	ext := filepath.Ext(filename)
	base := filepath.Base(filename)
	for _, ft := range fileTypes {
		for _, e := range ft.Extensions {
			// Check if the extension matches or if the base filename (like 'Makefile') matches.
			if e == ext || e == base {
				return ft
			}
		}
	}
	// Return Default file type (Text) if no match is found.
	return fileTypes[len(fileTypes)-1]
}

// InitFileTypes resets language settings to the current global configuration.
func InitFileTypes() {
	for _, ft := range fileTypes {
		ft.TabWidth = Config.DefaultTabWidth
	}
}