all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#47820: [PATCH] org-table-import: Give option to import interactively even if filename doesn't match
@ 2021-04-16  9:01 ` Utkarsh Singh
  0 siblings, 0 replies; 10+ messages in thread
From: Utkarsh Singh @ 2021-04-16  9:01 UTC (permalink / raw)
  To: 47820, emacs-orgmode

Hi,

Can we give small flexibility in choosing the filename interactively for
`org-table-import'?  Currently org-table-import will just throw an error
when file name doesn't have .txt, .csv or .tsv as extension.

This patch tries to add a simple yes-and-no to let user choose if they
want to continue importing or not.

diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el
index 0e93fb271f..ab66859d6a 100644
--- a/lisp/org/org-table.el
+++ b/lisp/org/org-table.el
@@ -938,7 +938,8 @@ org-table-import
 - regexp  When a regular expression, use it to match the separator."
   (interactive "f\nP")
   (when (and (called-interactively-p 'any)
-	     (not (string-match-p (rx "." (or "txt" "tsv" "csv") eos) file)))
+	     (not (string-match-p (rx "." (or "txt" "tsv" "csv") eos) file))
+             (not (yes-or-no-p "File doesn't have .txt, .tsv or .csv as extension.  Do you still want to continue? ")))
     (user-error "Cannot import such file"))
   (unless (bolp) (insert "\n"))
   (let ((beg (point))

-- 
Utkarsh Singh
http://utkarshsingh.xyz





^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-05-01 16:51 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-16  9:01 bug#47820: [PATCH] org-table-import: Give option to import interactively even if filename doesn't match Utkarsh Singh
2021-04-16  9:01 ` Utkarsh Singh
2021-05-01  8:51 ` bug#47820: " Bastien
2021-05-01 15:14   ` Utkarsh Singh
2021-05-01 16:06     ` Bastien
2021-05-01 16:06     ` Bastien
2021-05-01 16:50       ` Utkarsh Singh
2021-05-01 16:50       ` Utkarsh Singh
2021-05-01 15:14   ` Utkarsh Singh
2021-05-01  8:51 ` Bastien

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.