Skip to content

Commit

Permalink
Add fish support (Vigemus#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangdol authored and iriley committed Apr 13, 2023
1 parent 82982e2 commit bbe3be1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/iron.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ Currently, Iron has support for the following programming languages:
- tcl
- typescript
- zsh
- fish


===============================================================================
Expand Down
7 changes: 7 additions & 0 deletions lua/iron/fts/fish.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
local fish = {}

fish.fish = {
command = {"fish"},
}

return fish
3 changes: 2 additions & 1 deletion lua/iron/fts/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ local fts = {
stata = require("iron.fts.stata"),
tcl = require("iron.fts.tcl"),
typescript = require("iron.fts.typescript"),
zsh = require("iron.fts.zsh")
zsh = require("iron.fts.zsh"),
fish = require("iron.fts.fish")
}

return fts

0 comments on commit bbe3be1

Please sign in to comment.