Menu

#610 add autosave support

None
wont-fix
nobody
None
1
2013-11-30
2013-11-30
Anonymous
No

Please make Texstudio save edited files regularly, e.g. to a file called $ORIGINAL_FILENAME.latexstudio_autosave or something similar to limit data loss in case of system crashs.

Related

Feature Requests: #1294

Discussion

  • Tim Hoffmann

    Tim Hoffmann - 2013-11-30

    There is already Config -> Advanced Editor -> Autosave.

    It saves the filename regulary, but under the original filename not some _autosave stuff. We consider this sufficient, because you have to anyway save regularly under the original filename when you want to compile.

    If that is not enough, you can write your own script to regularly save all open files under different names. Hints:

    • Use ?txs-start as trigger
    • This code gets you started with setting up a recurring action

    Code template:

    var timer = new QTimer();
    timer.interval = 600000; // set the time in milliseconds
    timer.timeout.connect(this, function(){
        // do your stuff here
    });
    timer.start();
    
     
  • Tim Hoffmann

    Tim Hoffmann - 2013-11-30
    • status: open --> wont-fix
    • Group: -->
     

Anonymous
Anonymous

Add attachments
Cancel





Monday.com Logo