Skip to content

Commit b2d2ef0

Browse files
committed
Use the filetype from neovim
1 parent 61b49d2 commit b2d2ef0

File tree

7 files changed

+15
-133
lines changed

7 files changed

+15
-133
lines changed

event.go

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ package pulse
44
type Event struct {
55
EditorID string
66
Path string
7+
Filetype string
78
Editor string
89
OS string
910
}

git/filetypes.go

-80
This file was deleted.

git/filetypes_test.go

-34
This file was deleted.

git/git.go

+4-9
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func (f FileParser) extractRepositoryName(dirPath string) (string, error) {
117117
// ParseFile returns a ParseFile struct from an absolute path. It will return an
118118
// error if the path is empty, if the path is not a file or if it can't find
119119
// a parent .git file or folder before it reaches the root of the file tree.
120-
func (f FileParser) ParseFile(absolutePath string) (pulse.GitFile, error) {
120+
func (f FileParser) ParseFile(absolutePath, filetype string) (pulse.GitFile, error) {
121121
if absolutePath == "" {
122122
return pulse.GitFile{}, ErrEmptyPath
123123
}
@@ -143,21 +143,16 @@ func (f FileParser) ParseFile(absolutePath string) (pulse.GitFile, error) {
143143

144144
// Tries to get the filetype from either the file extension or name.
145145
filename := filepath.Base(absolutePath)
146-
ft, err := Filetype(filename)
147-
if err != nil {
148-
return pulse.GitFile{}, err
149-
}
150-
151146
gitFile := pulse.GitFile{
152147
Name: filename,
153-
Filetype: ft,
148+
Filetype: filetype,
154149
Repository: repositoryName,
155150
Path: path,
156151
}
157152

158153
return gitFile, nil
159154
}
160155

161-
func ParseFile(absolutePath string) (pulse.GitFile, error) {
162-
return New().ParseFile(absolutePath)
156+
func ParseFile(absolutePath, filetype string) (pulse.GitFile, error) {
157+
return New().ParseFile(absolutePath, filetype)
163158
}

git/git_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ func TestGetRepositoryFromPath(t *testing.T) {
132132

133133
// This is the absolute path of the file that we want to extract the repository name for.
134134
path := "/Users/conner/code/dotfiles/editors/nvim/init.lua"
135-
file, err := f.ParseFile(path)
135+
file, err := f.ParseFile(path, "lua")
136136
if err != nil {
137137
t.Fatal(err)
138138
}
@@ -209,7 +209,7 @@ func TestGetRepositoryFromPathBare(t *testing.T) {
209209

210210
// This is the absolute path of the file that we want to extract the repository name for.
211211
path := "/Users/conner/code/ore-ui/main/src/index.ts"
212-
file, err := f.ParseFile(path)
212+
file, err := f.ParseFile(path, "typescript")
213213
if err != nil {
214214
t.Fatal(err)
215215
}
@@ -286,7 +286,7 @@ func TestPathInBareProject(t *testing.T) {
286286

287287
// This is the absolute path of the file that we want to extract the repository name for.
288288
path := "/Users/conner/code/ore-ui/main/src/index.ts"
289-
file, err := f.ParseFile(path)
289+
file, err := f.ParseFile(path, "typescript")
290290
if err != nil {
291291
t.Fatal(err)
292292
}
@@ -361,7 +361,7 @@ func TestPathInProject(t *testing.T) {
361361

362362
// This is the absolute path of the file that we want to extract the repository name for.
363363
path := "/Users/conner/code/dotfiles/editors/nvim/init.lua"
364-
file, err := f.ParseFile(path)
364+
file, err := f.ParseFile(path, "typescript")
365365
if err != nil {
366366
t.Fatal(err)
367367
}

plugin/pulse.vim

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ call remote#host#RegisterPlugin('pulse-client', '0', [
2121

2222
" We only want track time for one instance nvim instance. We
2323
" need to let the server know which one we have focused.
24-
autocmd FocusGained * :call call("OnFocusGained", [g:pulse_session_id, expand('%:p')])
24+
autocmd FocusGained * :call call("OnFocusGained", [g:pulse_session_id, expand('%:p'), &filetype])
2525

2626
" Send FocusGained when we enter.
27-
autocmd VimEnter * :call call("OnFocusGained", [g:pulse_session_id, expand('%:p')])
27+
autocmd VimEnter * :call call("OnFocusGained", [g:pulse_session_id, expand('%:p'), &filetype])
2828

2929
" Let the server know the path of the buffer. Its not a problem to send
3030
" temporary buffers. The server will figure it out and exit early.
31-
autocmd BufEnter * :call call("OpenFile", [g:pulse_session_id, expand('%:p')])
31+
autocmd BufEnter * :call call("OpenFile", [g:pulse_session_id, expand('%:p'), &filetype])
3232

3333
" We are sending a heartbeart each time we write a buffer.
3434
" This lets the server know that our session is still active.
35-
autocmd BufWrite * :call call("SendHeartbeat", [g:pulse_session_id, expand('%:p')])
35+
autocmd BufWrite * :call call("SendHeartbeat", [g:pulse_session_id, expand('%:p'), &filetype])
3636

3737
" When we exit VIM we inform the server that our coding session has ended.
38-
autocmd VimLeave * :call call("EndSession", [g:pulse_session_id, expand('%:p')])
38+
autocmd VimLeave * :call call("EndSession", [g:pulse_session_id, expand('%:p'), &filetype])

server/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func New(cfg *pulse.Config, segmentPath string, sessionWriter SessionWriter, opt
5252
}
5353

5454
func (s *Server) openFile(event pulse.Event) {
55-
gitFile, gitFileErr := git.ParseFile(event.Path)
55+
gitFile, gitFileErr := git.ParseFile(event.Path, event.Filetype)
5656
if gitFileErr != nil {
5757
return
5858
}

0 commit comments

Comments
 (0)