aboutsummaryrefslogtreecommitdiff
path: root/lua/startup/utils.lua
blob: fc3cabe10aceab067a21b7da105f5379e5ae514f (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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
---@class startup.utils
local U = {}
local flag = false
local new_cursor_pos
local help_window

local log = require("startup.log")

local oldfiles_total = 0
local all_oldfiles = {}

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

function U.breaking_changes()
    local buf = vim.api.nvim_create_buf(false, true)
    local ns = vim.api.nvim_create_namespace("Startup_breaking_changes")
    vim.api.nvim_buf_set_option(buf, "bufhidden", "wipe")
    vim.api.nvim_buf_set_keymap(
        buf,
        "n",
        "q",
        "<cmd>q<CR>",
        { noremap = true, silent = true, nowait = true }
    )
    local lines = {
        "",
        "  # Breaking Changes in startup.nvim",
        "",
        "  ## 18-12-2021:",
        "  The syntax for mappings has changed. This is because",
        "  before it wasn't possible to keep the mappings in the",
        "  order in which they were defined.",
        "",
        "  ### Old syntax:",
        "  ```lua",
        "  content = {",
        '    [" Find File"] = { "Telescope find_files", "<leader>ff" }',
        '    [" Find Word"] = { "Telescope live_grep", "<leader>lg" }',
        '    [" Recent Files"] = { "Telescope oldfiles", "<leader>of" }',
        '    [" File Browser"] = { "Telescope file_browser", "<leader>fb" }',
        '    [" Colorschemes"] = { "Telescope colorscheme", "<leader>cs" }',
        [[    [" New File"] = { "lua require'startup'.new_file()", "<leader>nf" }]],
        "  }",
        "  ```",
        "",
        "  ### New syntax:",
        "  ```lua",
        "  content = {",
        '    {" Find File",  "Telescope find_files", "<leader>ff" }',
        '    {" Find Word",  "Telescope live_grep", "<leader>lg" }',
        '    {" Recent Files", "Telescope oldfiles", "<leader>of" }',
        '    {" File Browser", "Telescope file_browser", "<leader>fb" }',
        '    {" Colorschemes", "Telescope colorscheme", "<leader>cs" }',
        [[    {" New File", "lua require'startup'.new_file()", "<leader>nf" }]],
        "  }",
        "  ```",
    }
    vim.api.nvim_buf_set_lines(buf, 0, -1, false, lines)
    local width = vim.api.nvim_win_get_width(0)
    local height = vim.api.nvim_win_get_height(0)
    local win = vim.api.nvim_open_win(buf, true, {
        relative = "win",
        win = 0,
        -- width = math.floor(width * 0.8),
        width = 85,
        height = math.floor(height * 0.9),
        col = math.floor((width - 80) * 0.4),
        row = math.floor(height * 0.1),
        border = "shadow",
        style = "minimal",
    })
    -- vim.api.nvim_buf_add_highlight(buf, ns, "Special", 1, 0, -1)
    vim.api.nvim_win_set_option(win, "winblend", 0)
    vim.api.nvim_buf_set_option(buf, "modifiable", false)
    vim.api.nvim_buf_set_option(buf, "filetype", "markdown")
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
        ),
    }
    local length
    if not vim.tbl_isempty(user_mappings) then
        local user_map_commands = {}
        table.insert(lines, "")
        table.insert(lines, "   User Mappings:")
        table.insert(lines, "")
        for _, lhs in pairs(user_mappings) do
            table.insert(user_map_commands, lhs)
        end
        length = U.longest_line(user_map_commands)
        for rhs, lhs in pairs(user_mappings) do
            table.insert(
                lines,
                "    "
                    .. lhs
                    .. ":"
                    .. U.spaces(length + 3 - #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, length + 5, -1)
            vim.api.nvim_buf_add_highlight(buf, ns, "Number", i, 1, length + 5)
        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 = {}
    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)))
        table.insert(all_oldfiles, (string.sub(file, 4, -1)))
        oldfiles_amount = oldfiles_amount + 1
    end
    local oldfiles_shortened = {}
    for _, file in ipairs(oldfiles) do
        if oldfiles_total < 10 then
            oldfiles_shortened[#oldfiles_shortened + 1] = "["
                .. oldfiles_total
                .. "] "
                .. string.gsub(file, home, "~")
        else
            oldfiles_shortened[#oldfiles_shortened + 1] = string.gsub(
                file,
                home,
                "~"
            )
        end
        oldfiles_total = oldfiles_total + 1
    end
    oldfiles = oldfiles_shortened
    table.insert(oldfiles, 1, "Last Files:")
    table.insert(oldfiles, 2, "")

    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 = {}
    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)))
        table.insert(all_oldfiles, file)
        oldfiles_amount = oldfiles_amount + 1
    end
    local oldfiles_shortened = {}
    for _, file in ipairs(oldfiles) do
        if oldfiles_total < 10 then
            oldfiles_shortened[#oldfiles_shortened + 1] = "["
                .. oldfiles_total
                .. "] "
                .. string.gsub(file, home, "~")
        else
            oldfiles_shortened[#oldfiles_shortened + 1] = string.gsub(
                file,
                home,
                "~"
            )
        end
        oldfiles_total = oldfiles_total + 1
    end
    oldfiles = oldfiles_shortened
    table.insert(
        oldfiles,
        1,
        "Last Files in " .. string.gsub(directory, home, "~") .. ":"
    )
    table.insert(oldfiles, 2, "")

    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

function U.oldfiles_mappings()
    if not all_oldfiles then
        return
    end
    for i = 0, #all_oldfiles >= 10 and 9 or #all_oldfiles - 1, 1 do
        vim.api.nvim_buf_set_keymap(
            0,
            "n",
            tostring(i),
            "<cmd>e " .. all_oldfiles[i + 1] .. "<CR>",
            { noremap = true, silent = true }
        )
    end
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.fn.winwidth(require("startup").window_id) * 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
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)
        if new_cursor_pos[1] == line_count() then
            flag = false
            return
        end
        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
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