aboutsummaryrefslogtreecommitdiff
path: root/lua/startup/utils.lua
blob: f6db9eeba1a8bcfefbbb348dfa5d9bc921bd8614 (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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
---@class startup.utils
local U = {}
local flag = false
local new_cursor_pos
local help_window

local set_buf_opt = vim.api.nvim_buf_set_option

local line_count = function()
  return vim.api.nvim_buf_line_count(0)
end
-- local startup = require"startup"

---sets cursor to position in current window
---@param cursor table table in form {row,column}
local function set_cursor(cursor)
  vim.api.nvim_win_set_cursor(0, cursor)
end

---load the theme specified
---@param theme_name string theme to load
---@return table settings
function U.load_theme(theme_name)
  local path = "lua/startup/themes/" .. theme_name .. ".lua"
  local files = vim.api.nvim_get_runtime_file(path, true)
  local settings
  if #files == 0 then
    path = "lua/startup/themes" .. theme_name .. "/init.lua"
    files = vim.api.nvim_get_runtime_file(path, true)
  end
  if #files == 0 then
    error("lua/startup/themes/" .. theme_name .. ".lua" .. " not found")
  elseif #files == 1 then
    settings = dofile(files[1])
  else
    local startup_pattern = "startup.nvim/lua/startup"
    local valid_file = false
    for _, file in ipairs(files) do
      if not file:find(startup_pattern) then
        settings = dofile(file)
        valid_file = true
      end
    end
    if not valid_file then
      -- multiple files but in startup repo shouldn't happen so just use first one
      settings = dofile(files[1])
    end
  end
  return settings
end

---checks if cursor should be able to move on current line
local function bad_line()
  for _, line in ipairs(require("startup").good_lines) do
    if line == vim.trim(vim.api.nvim_get_current_line()) and line ~= "" then
      return false
    end
  end
  return true
end

U.cursor_pos = vim.api.nvim_win_get_cursor(0)

---returns string with specified amount of spaces
---@param amount number the amount of space to return
---@return string
function U.spaces(amount)
  return string.rep(" ", amount)
end

---returns table with empty strings
---@param amount number amount of empty strings
function U.empty(amount)
  for _ = 1, amount, 1 do
    table.insert(require("startup").lines, { " ", "center", false, "normal" })
  end
end

local function parse_mapping(mapping)
  mapping = string.gsub(mapping, "C%-", "ctrl+")
  mapping = string.gsub(mapping, "c%-", "ctrl+")
  mapping = string.gsub(mapping, "%<leader%>", "leader+")
  mapping = string.gsub(mapping, "%<(.+)%>", "%1")
  return mapping
end

---open float with all the keybindings
function U.key_help()
  local ns = vim.api.nvim_create_namespace("Float help")
  local settings = require("startup").settings
  local buf = vim.api.nvim_create_buf(false, true)
  local user_mappings = require("startup").user_mappings
  set_buf_opt(buf, "bufhidden", "wipe")
  local lines = {
    "    Startup.nvim Mappings    ",
    "",
    "    Execute command:    " .. parse_mapping(
      settings.mappings.execute_command
    ),
    "    Open file:          " .. parse_mapping(settings.mappings.open_file),
    "    Open file in split: " .. parse_mapping(
      settings.mappings.open_file_split
    ),
    "    Open section:       " .. parse_mapping(settings.mappings.open_section),
  }
  if not vim.tbl_isempty(user_mappings) then
    table.insert(lines, "")
    table.insert(lines, "   User Mappings:")
    table.insert(lines, "")
    for rhs, lhs in pairs(user_mappings) do
      table.insert(
        lines,
        "    " .. lhs .. ":" .. U.spaces(35 - #lhs) .. parse_mapping(rhs)
      )
    end
  end
  vim.api.nvim_buf_set_lines(buf, 0, -1, false, lines)
  local height = 6
  if not vim.tbl_isempty(user_mappings) then
    height = 9 + vim.tbl_count(user_mappings)
  end
  help_window = vim.api.nvim_open_win(buf, false, {
    relative = "cursor",
    width = 55,
    height = height,
    col = 0,
    row = 1,
    border = "shadow",
    style = "minimal",
  })
  if not vim.tbl_isempty(user_mappings) then
    vim.api.nvim_buf_add_highlight(buf, ns, "Special", 7, 1, -1)
    for i = 9, 9 + vim.tbl_count(user_mappings), 1 do
      vim.api.nvim_buf_add_highlight(buf, ns, "String", i, 36, -1)
      vim.api.nvim_buf_add_highlight(buf, ns, "Number", i, 1, 35)
    end
  end
  vim.api.nvim_win_set_option(help_window, "winblend", 20)
  vim.api.nvim_buf_add_highlight(buf, ns, "Special", 0, 1, -1)
  for i = 2, 5, 1 do
    vim.api.nvim_buf_add_highlight(buf, ns, "String", i, 24, -1)
    vim.api.nvim_buf_add_highlight(buf, ns, "Number", i, 1, 23)
  end
  set_buf_opt(buf, "modifiable", false)
  vim.cmd(
    [[autocmd CursorMoved * ++once lua require"startup.utils".close_help()]]
  )
end

---close the help window
function U.close_help()
  vim.api.nvim_win_close(help_window, false)
  -- vim.cmd([[autocmd! CursorMoved * lua require"startup.utils".close_help() ++once]])
end

---the default header
---@return table header strings with the default header
function U.default_header()
  local header = {
    "                                          /$$              ",
    "                                         |__/              ",
    " /$$$$$$$   /$$$$$$   /$$$$$$  /$$    /$$ /$$ /$$$$$$/$$$$ ",
    "| $$__  $$ /$$__  $$ /$$__  $$|  $$  /$$/| $$| $$_  $$_  $$",
    "| $$  \\ $$| $$$$$$$$| $$  \\ $$ \\  $$/$$/ | $$| $$ \\ $$ \\ $$",
    "| $$  | $$| $$_____/| $$  | $$  \\  $$$/  | $$| $$ | $$ | $$",
    "| $$  | $$|  $$$$$$$|  $$$$$$/   \\  $/   | $$| $$ | $$ | $$",
    "|__/  |__/ \\_______/ \\______/     \\_/    |__/|__/ |__/ |__/",
  }
  return header
end

---get oldfiles
---@param amount number amount of oldfiles to return
---@return table oldfiles table with all the oldfiles in it
function U.get_oldfiles(amount)
  local home = vim.fn.expand("~")
  local oldfiles = { "Last files", "" }
  local oldfiles_raw = vim.fn.execute("oldfiles")
  local oldfiles_amount = 0
  for file in oldfiles_raw:gmatch("[^\n]+") do
    if oldfiles_amount >= amount then
      break
    end
    table.insert(oldfiles, (string.sub(file, 4, -1)))
    oldfiles_amount = oldfiles_amount + 1
  end
  local oldfiles_shortened = {}
  for _, file in ipairs(oldfiles) do
    oldfiles_shortened[#oldfiles_shortened+1]=string.gsub(file, home, "~")
  end
  oldfiles = oldfiles_shortened

  local length = U.longest_line(oldfiles) + 2
  local oldfiles_aligned = {}
  for _, file in ipairs(oldfiles) do
    table.insert(oldfiles_aligned, file .. U.spaces(length - #file))
  end
  return oldfiles_aligned
end

---get oldfiles of current directory
---@param amount number amount of oldfiles to return
---@return table oldfiles table with all the oldfiles in it
function U.get_oldfiles_directory(amount)
  local home = vim.fn.expand("~")
  local oldfiles_raw = vim.fn.execute("oldfiles")
  local oldfiles_amount = 0
  local directory = vim.api.nvim_exec([[pwd]], true)
  local oldfiles = { "Last files in " .. directory, " " }
  for file in oldfiles_raw:gmatch(directory .. "[^\n]+") do
    if oldfiles_amount >= amount then
      break
    end
    table.insert(oldfiles, (string.sub(file, #directory + 1, -1)))
    oldfiles_amount = oldfiles_amount + 1
  end
  local oldfiles_shortened = {}
  for _, file in ipairs(oldfiles) do
    oldfiles_shortened[#oldfiles_shortened+1]=string.gsub(file, home, "~")
  end
  oldfiles = oldfiles_shortened

  local length = U.longest_line(oldfiles) + 2
  local oldfiles_aligned = {}
  for _, file in ipairs(oldfiles) do
    table.insert(oldfiles_aligned, file .. U.spaces(length - #file))
  end
  return oldfiles_aligned
end

---return column on which cursor should be positioned
local column = function()
  local settings = require("startup").settings
  local column_calc
  local cursor_column = settings.options.cursor_column or 0.5
  if cursor_column < 1 then
    column_calc = math.floor(vim.o.columns * cursor_column)
  else
    column_calc = cursor_column
  end
  return column_calc
end

---reposition cursor if cursor moved up
local function move_up()
  flag = true
  local i
  if new_cursor_pos[1] < U.cursor_pos[1] then
    if new_cursor_pos[1] == 1 then
      set_cursor(new_cursor_pos)
      i = 1
      while true do
        if not bad_line() then
          flag = false
          return
        end
        set_cursor({ new_cursor_pos[1] + i, column() })
        i = i + 1
      end
    else
      set_cursor(new_cursor_pos)
      i = 0
    end
  else
    set_cursor(U.cursor_pos)
    i = 1
  end
  while true do
    set_cursor({ new_cursor_pos[1] - i, column() })
    if not bad_line() then
      flag = false
      return
    end
    i = i + 1
    if new_cursor_pos[1] - i <= 1 then
      i = 1
      set_cursor({ 1, column() })
      while true do
        if not bad_line() then
          flag = false
          return
        end
        set_cursor({ new_cursor_pos[1] - 1 + i, column() })
        i = i + 1
      end
    end
  end
  flag = false
  return
end

---reposition cursor if cursor moved down
local function move_down()
  flag = true
  local i
  if new_cursor_pos[1] > U.cursor_pos[1] then
    if new_cursor_pos[1] == line_count() then
      set_cursor(new_cursor_pos)
      i = 1
      while true do
        if not bad_line() then
          flag = false
          return
        end
        set_cursor({ new_cursor_pos[1] - i, column() })
        i = i + 1
      end
      i = 0
    else
      set_cursor(new_cursor_pos)
      i = 0
    end
  else
    set_cursor(U.cursor_pos)
    i = 1
  end
  while true do
    set_cursor({ new_cursor_pos[1] + i, column() })
    if not bad_line() then
      flag = false
      return
    end
    i = i + 1
    if new_cursor_pos[1] + i >= line_count() then
      set_cursor(U.cursor_pos)
      flag = false
      return
    end
  end
  flag = false
  return
end

---reposition cursor after it moved
function U.reposition_cursor()
  if vim.o.filetype ~= "startup" or flag then
    return
  end
  new_cursor_pos = vim.api.nvim_win_get_cursor(0)
  if new_cursor_pos[1] > U.cursor_pos[1] then
    move_down()
  elseif
    (new_cursor_pos[1] < U.cursor_pos[1])
    or new_cursor_pos[2] < U.cursor_pos[2]
  then
    move_up()
  elseif
    (new_cursor_pos[1] > U.cursor_pos[1])
    or new_cursor_pos[2] > U.cursor_pos[2]
  then
    move_down()
  end
  U.cursor_pos = vim.api.nvim_win_get_cursor(0)
end

---return longest line length
---@param lines table
---@return number longest
function U.longest_line(lines)
  local longest = 0
  for _, line in ipairs(lines) do
    if vim.fn.strdisplaywidth(line) > longest then
      longest = vim.fn.strdisplaywidth(line)
    end
  end
  return longest
end

---set all the options that should be set for the startup buffer
function U.set_buf_options()
  local settings = require("startup").settings
  local last_status = vim.api.nvim_get_option("laststatus")
  local tab_line = vim.api.nvim_get_option("showtabline")
  set_buf_opt(0, "bufhidden", "wipe")
  set_buf_opt(0, "buftype", "nofile")
  vim.cmd([[set wrap]])
  if settings.options.disable_statuslines then
    vim.opt.laststatus = 0
    vim.opt.showtabline = 0
  end
  set_buf_opt(0, "filetype", "startup")
  set_buf_opt(0, "swapfile", false)
  vim.cmd([[setlocal nonu nornu]])
  vim.api.nvim_set_current_dir(
    vim.fn.fnamemodify(vim.api.nvim_buf_get_name(0), ":h")
  )
  vim.cmd(
    [[autocmd BufEnter * lua if vim.opt.filetype~="startup" then vim.opt.laststatus=]]
    .. last_status
    .. [[;vim.opt.showtabline=]]
    .. tab_line
    .. [[ end]]
  )
end

---validate the settings
---@param options table the settings for a section
function U.validate_settings(options)
  if not options.oldfiles_directory then options.oldfiles_directory = false end
  if not options.fold_section then options.fold_section = false end
  if not options.margin then options.margin = 5 end
  if not options.title then options.title = "" end
  if not options.default_color then options.default_color = "" end
  if not options.highlights then options.highlights = "" end
  if not options.oldfiles_amount then options.oldfiles_amount = 5 end
  vim.validate({
    type = {
      options.type,
      function(arg)
        for _, v in ipairs({ "mapping", "oldfiles", "text" }) do
          if v == arg then
            return true
          end
        end
        return false
      end,
      '"mapping" "text" or "oldfiles"',
    },
    align = {
      options.align,
      function(arg)
        for _, v in ipairs({ "right", "left", "center" }) do
          if v == arg then
            return true
          end
        end
        return false
      end,
      '"center" "left" or "right"',
    },
    content = {
      options.content,
      function(content)
        if
          options.type == "text"
          and (type(content) == "table" or type(content) == "function")
        then
          return true
        elseif options.type == "mapping" and type(content) == "table" then
          return true
        elseif options.type == "oldfiles" then
          return true
        end
        return false
      end,
      "table for type=mapping and table or function for type=text",
    },
  })
  return options
end

return U