/jEdit/tags/jedit-4-3-pre5/macros/Files/Next_Dirty_Buffer.bsh
# · Unknown · 44 lines · 39 code · 5 blank · 0 comment · 0 complexity · 7c2c94ff15f39f8e5393bdbdf0c6a100 MD5 · raw file
- /*
- * Next_Dirty_Buffer.bsh - Changes the buffer in
- * the current EditPane to the next dirty buffer, if
- * there is one.
- *
- * Copyright (C) 2002-2004 Ollie Rutherfurd <oliver@rutherfurd.net>
- *
- * $Id: Next_Dirty_Buffer.bsh 5450 2006-06-20 09:08:13Z vampire0 $
- */
- void nextDirtyBuffer(View view)
- {
- Buffer current = view.getBuffer();
- Buffer b = current.getNext();
- for(int i=0; i < jEdit.getBufferCount()-1; i++)
- {
- // Buffer.getNext() returns null on last
- if(b == null)
- b = jEdit.getFirstBuffer();
- if(b.isDirty())
- {
- view.getEditPane().setBuffer(b);
- return;
- }
- b = b.getNext(); // check next
- }
- // if we get here, we didn't switch
- if(current.isDirty())
- view.getStatus().setMessageAndClear("No other buffers are dirty");
- else
- view.getStatus().setMessageAndClear("No buffers are dirty");
- }
- nextDirtyBuffer(view);
- /*
- <listitem>
- <para><filename>Next_Dirty_Buffer.bsh</filename></para>
- <abstract><para>Switches to the next dirty buffer, if there is one.
- </para></abstract>
- </listitem>
- */