Merge lines.love

[?]
Dec 5, 2022, 11:36 PM
NMRUNROT2IJCGMHVZYSKSOXWCGU5U6YGAZBVK5OPB5JPMGUYWUPAC

Dependencies

  • [2] RPGTBMMM Merge lines.love
  • [3] 5HEZU3YS consume a mouse click when switching sides
  • [4] PE7QD5GR source editor: clear logs
  • [5] VHQCNMAR several more modules
  • [6] CE4LZV4T drop last couple of manual tests
  • [7] BJ5X5O4A let's prevent the text cursor from ever getting on a drawing
  • [8] L2FWWEQL source: remember cursor position of multiple files
  • [9] ATQO62TF Merge lines.love
  • [10] 2L5MEZV3 experiment: new edit namespace
  • [11] R5QXEHUI somebody stop me
  • [12] JOPVPUSA editing source code from within the app
  • [13] VO2ZVTWK Merge lines.love
  • [14] LXTTOB33 extract a couple of files
  • [15] 32V6ZHQB Merge lines.love
  • [16] 2CTN2IEF Merge lines.love
  • [17] D2GCFTTT clean up repl functionality
  • [18] 73OCE2MC after much struggle, a brute-force undo
  • [19] XX7G2FFJ intermingle freehand line drawings with text
  • [20] VXORMHME delete experimental REPL
  • [21] 3QNOKBFM beginnings of a test harness
  • [22] TVCPXAAU rename
  • [23] OI4FPFIN support drawings in the source editor
  • [24] VHUNJHXB Merge lines.love
  • [25] XW7ANEJX switch shortcuts for bifold text
  • [26] D4B52CQ2 Merge lines.love
  • [27] GUOQRUL7 Merge lines.love
  • [28] C7KFTKJA easy way to make file switching more convenient
  • [29] VBU5YHLR Merge lines.love
  • [30] ETXNVRPT Merge lines.love
  • [31] MD3W5IRA new fork: rip out drawing support
  • [32] T4FRZSYL delete an ancient, unused file
  • [33] FS2ITYYH record a known issue
  • [34] K2X6G75Z start writing some tests for drawings
  • [35] AVTNUQYR basic test-enabled framework
  • [36] OGUV4HSA remove some memory leaks from rendered fragments
  • [37] 4YDBYBA4 clean up memory leak experiments
  • [38] 6LJZN727 handle chords
  • [39] MLXDXFO6 isolate some tests from settings
  • [40] TLOAPLBJ add a license
  • [41] VP5KC4XZ Merge lines.love
  • [42] RSZD5A7G forgot to add json.lua
  • [43] KKMFQDR4 editing source code from within the app
  • [44] BULPIBEG beginnings of a module for the text editor
  • [45] KMSL74GA support selections in the source editor
  • [46] 3PSFWAIL Merge lines.love
  • [47] MFZW24AN bugfix: disable typing while file navigator is open
  • [48] OTIBCAUJ love2d scaffold
  • [49] 66X36NZN a little more prose describing manual_tests
  • [50] UI3IP45F Merge lines.love
  • [51] JJDUDMVX Merge lines.love
  • [52] BLWAYPKV extract a module

Change contents

  • file deletion: source.lua (----------)source.lua (----------)
    [5.2][5.177652:177686](),[5.2][5.177652:177686](),[5.177686][5.165766:165766]()
    return
    return
    end
    if chord == 'C-k' then
    -- clear logs
    love.filesystem.remove('log')
    -- restart to reload state of logs on screen
    source.quit()
    load_file_from_source_or_save_directory('main.lua')
    App.undo_initialize()
    App.run_tests_and_initialize()
    return
    end
    if chord == 'C-g' then
    Show_file_navigator = true
    end
    log_browser.mouse_pressed(Log_browser_state, x,y, mouse_button)
    for _,line_cache in ipairs(Editor_state.line_cache) do line_cache.starty = nil end -- just in case we scroll
    end
    end
    function source.mouse_released(x,y, mouse_button)
    Cursor_time = 0 -- ensure cursor is visible immediately after it moves
    if Focus == 'edit' then
    return edit.mouse_released(Editor_state, x,y, mouse_button)
    else
    return log_browser.mouse_released(Log_browser_state, x,y, mouse_button)
    end
    end
    function source.textinput(t)
    Cursor_time = 0 -- ensure cursor is visible immediately after it moves
    return
    end
    edit.mouse_pressed(Editor_state, x,y, mouse_button)
    elseif Show_log_browser_side and Log_browser_state.left <= x and x < Log_browser_state.right then
    --? print('click on log_browser side')
    if Focus ~= 'log_browser' then
    Focus = 'log_browser'
  • file deletion: commands.lua (----------)commands.lua (----------)
    [5.2][5.207726:207762](),[5.2][5.207726:207762](),[5.207762][5.204370:204370]()
    add_hotkey_to_menu('ctrl+k: clear logs')
    if Editor_state.expanded then
  • edit in source.lua at line 302
    [5.175046]
    [5.175046]
    return
  • edit in source.lua at line 309
    [5.175316]
    [5.175316]
    return
  • edit in source.lua at line 364
    [5.114]
    [5.176955]
    return
    end
    if chord == 'C-k' then
    -- clear logs
    love.filesystem.remove('log')
    -- restart to reload state of logs on screen
    source.quit()
    load_file_from_source_or_save_directory('main.lua')
    App.undo_initialize()
    App.run_tests_and_initialize()
  • edit in commands.lua at line 26
    [5.204715]
    [5.204715]
    add_hotkey_to_menu('ctrl+k: clear logs')