Changeset 994f87b in mainline for uspace/app/edit/sheet.c


Ignore:
Timestamp:
2024-07-19T16:13:22Z (3 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Children:
f32f89a
Parents:
705b65ea
git-author:
Jiri Svoboda <jiri@…> (2024-07-19 16:04:36)
git-committer:
Jiri Svoboda <jiri@…> (2024-07-19 16:13:22)
Message:

Add File/New and File/Open to text editor

Change repeat search shortcut to Ctrl-R as Ctrl-N is now used for
New File.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/edit/sheet.c

    r705b65ea r994f87b  
    11/*
    2  * Copyright (c) 2009 Jiri Svoboda
     2 * Copyright (c) 2024 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    9090}
    9191
     92/** Destroy sheet. */
     93void sheet_destroy(sheet_t *sh)
     94{
     95        free(sh->data);
     96        free(sh);
     97}
     98
    9299/** Insert text into sheet.
    93100 *
Note: See TracChangeset for help on using the changeset viewer.